aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/BorderedContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/BorderedContainer.tsx')
-rw-r--r--frontend/app/components/BorderedContainer.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/app/components/BorderedContainer.tsx b/frontend/app/components/BorderedContainer.tsx
new file mode 100644
index 0000000..cbbfbde
--- /dev/null
+++ b/frontend/app/components/BorderedContainer.tsx
@@ -0,0 +1,13 @@
+import React from "react";
+
+type Props = {
+ children: React.ReactNode;
+};
+
+export default function BorderedContainer({ children }: Props) {
+ return (
+ <div className="bg-white border-2 border-pink-600 rounded-xl p-4">
+ {children}
+ </div>
+ );
+}