diff --git a/components/ui/RoundedContainer.tsx b/components/ui/RoundedContainer.tsx new file mode 100644 index 0000000..e3e427d --- /dev/null +++ b/components/ui/RoundedContainer.tsx @@ -0,0 +1,9 @@ +import React from "react"; + +export default function RoundedContainer({children, slim = true}: {children: React.ReactNode, slim?: boolean}) { + return ( +
+ {children} +
+ ) +} \ No newline at end of file