2024-08-04 22:47:43 +05:30
|
|
|
import Sidebar from './sidebar/sidebar';
|
|
|
|
|
|
|
|
|
|
import { LayoutFilled, ProductFilled, CloudUploadOutlined } from "@ant-design/icons";
|
|
|
|
|
import WidgetsContainer from './sidebar/widgetsContainer';
|
|
|
|
|
|
2024-08-04 12:08:30 +05:30
|
|
|
|
|
|
|
|
function App() {
|
2024-08-04 22:47:43 +05:30
|
|
|
|
|
|
|
|
const tabs = [
|
|
|
|
|
{
|
|
|
|
|
name: "Widgets",
|
|
|
|
|
icon: <LayoutFilled />,
|
|
|
|
|
content: <WidgetsContainer />
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Extensions",
|
|
|
|
|
icon: <ProductFilled />,
|
|
|
|
|
content: <></>
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Uploads",
|
|
|
|
|
icon: <CloudUploadOutlined />,
|
|
|
|
|
content: <></>
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
|
2024-08-04 12:08:30 +05:30
|
|
|
return (
|
2024-08-04 22:47:43 +05:30
|
|
|
<div className="tw-w-full tw-h-[100vh] tw-flex tw-bg-primaryBg">
|
|
|
|
|
|
|
|
|
|
<Sidebar tabs={tabs}/>
|
|
|
|
|
|
2024-08-04 12:08:30 +05:30
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App;
|