Add files via upload

This commit is contained in:
2024-07-17 14:41:27 +05:00
committed by GitHub
parent 3fef1624db
commit 0cb207bd7c
60 changed files with 2325 additions and 0 deletions

View 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;