diff options
Diffstat (limited to 'src/components/Main')
| -rw-r--r-- | src/components/Main/Main.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx new file mode 100644 index 0000000..3705c83 --- /dev/null +++ b/src/components/Main/Main.tsx @@ -0,0 +1,7 @@ +import { FunctionComponent } from 'react'; + +const Main: FunctionComponent = ({ children }) => { + return <main>{children}</main>; +}; + +export default Main; |
