mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-26 17:35:33 +01:00
10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
|
import { ReactNode } from "react";
|
||
|
|
||
|
export function Box(props: { children?: ReactNode }) {
|
||
|
return (
|
||
|
<div className="bg-video-scraping-card rounded-xl p-8">
|
||
|
{props.children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|