Spaces:
Running
Running
File size: 310 Bytes
4fb0c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from 'react';
import Sidebar from '../components/SideBarGPT';
const MainLayout = ({ children }) => {
return (
<div className="flex min-h-screen">
<Sidebar />
<div className="flex-1 p-6 bg-gray-100">
{children}
</div>
</div>
);
};
export default MainLayout;
|