mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 08:41:37 +00:00
15 lines
224 B
TypeScript
15 lines
224 B
TypeScript
import { FC } from 'react';
|
|
import HeadBar from 'components/NavBar';
|
|
|
|
const MainLayout: FC = ({ children }) => {
|
|
return (
|
|
<>
|
|
<HeadBar />
|
|
|
|
<main>{children}</main>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MainLayout;
|