mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +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;
|