code-share/components/layout/main-layout.tsx

19 lines
280 B
TypeScript
Raw Normal View History

2024-02-23 19:36:10 +07:00
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;