mirror of
https://github.com/khairul169/code-share.git
synced 2025-06-18 01:29:35 +07:00
19 lines
280 B
TypeScript
19 lines
280 B
TypeScript
|
import React from "react";
|
||
|
import Navbar from "../containers/navbar";
|
||
|
|
||
|
type LayoutProps = {
|
||
|
children: React.ReactNode;
|
||
|
};
|
||
|
|
||
|
const MainLayout = ({ children }: LayoutProps) => {
|
||
|
return (
|
||
|
<div>
|
||
|
<Navbar />
|
||
|
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default MainLayout;
|