summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/main.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-09 19:39:11 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-09 19:39:11 +0200
commit7b9b5c2368ecff5b083b171cf38ce914746284ac (patch)
tree689b5c740fe7e701acd5f7da64273076bc35aa6d /src/components/atoms/layout/main.tsx
parent9cbef657ac9484cbf79234527ec6bfe6a451ece8 (diff)
chore: add a Main component
Diffstat (limited to 'src/components/atoms/layout/main.tsx')
-rw-r--r--src/components/atoms/layout/main.tsx23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/atoms/layout/main.tsx b/src/components/atoms/layout/main.tsx
new file mode 100644
index 0000000..4549328
--- /dev/null
+++ b/src/components/atoms/layout/main.tsx
@@ -0,0 +1,23 @@
+import { FC } from 'react';
+
+export type MainProps = {
+ /**
+ * Set additional classnames to the main element.
+ */
+ className?: string;
+ /**
+ * The main wrapper id.
+ */
+ id: string;
+};
+
+/**
+ * Main component
+ *
+ * Render a main element.
+ */
+const Main: FC<MainProps> = ({ children, ...props }) => {
+ return <main {...props}>{children}</main>;
+};
+
+export default Main;