Add files via upload
This commit is contained in:
15
src/layouts/ContentLayout/ContentLayout.tsx
Normal file
15
src/layouts/ContentLayout/ContentLayout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { FC, ReactNode } from 'react';
|
||||
|
||||
import style from './ContentLayout.module.css';
|
||||
|
||||
type ContentLayoutProps = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
const ContentLayout: FC<ContentLayoutProps> = ({ children }) => (
|
||||
<main className={style.contentWrapper}>
|
||||
{children}
|
||||
</main>
|
||||
);
|
||||
|
||||
export default ContentLayout;
|
||||
Reference in New Issue
Block a user