diff --git a/components/Container.tsx b/components/Container.tsx new file mode 100644 index 0000000..e2f8921 --- /dev/null +++ b/components/Container.tsx @@ -0,0 +1,14 @@ +const Container = ({ className, children }:ContainerProps): JSX.Element => { + return ( +
+ {children} +
+ ) +} + +interface ContainerProps { + className?: string + children: JSX.Element +} + +export default Container \ No newline at end of file