aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Container.js
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-04-09 15:02:44 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-04-09 15:02:44 -0400
commit7c2574f1985cddba1e6fa6fcc6f8e1c019aaf7ed (patch)
tree34b1f3e90dd6a7d83cb7c3c9b71b34a138194548 /src/components/Container.js
parent1425783fe7f22efcdcc320de6d3ba49a83a44f3c (diff)
refactor: Removed NextJS from project
Diffstat (limited to 'src/components/Container.js')
-rw-r--r--src/components/Container.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/Container.js b/src/components/Container.js
new file mode 100644
index 0000000..1a2a8b0
--- /dev/null
+++ b/src/components/Container.js
@@ -0,0 +1,11 @@
+import React from 'react';
+
+const Container = (props) => {
+ return (
+ <div className={`container p-8 mx-auto ${props.className}`}>
+ {props.children}
+ </div>
+ );
+};
+
+export default Container; \ No newline at end of file