diff --git a/frontend/src/renderer/components/Layout.jsx b/frontend/src/renderer/components/Layout.jsx new file mode 100644 index 0000000..75651b8 --- /dev/null +++ b/frontend/src/renderer/components/Layout.jsx @@ -0,0 +1,22 @@ +import React from 'react'; +import { Layout as AntLayout } from 'antd'; +import Header from './Header'; +import Sidebar from './Sidebar'; + +const { Content } = AntLayout; + +function AppLayout({ children }) { + return ( + +
+ + + + {children} + + + + ); +} + +export default AppLayout;