import { Dashboard } from 'icons'; import { useRoutes } from 'react-router-dom'; import { ExploreSpaces } from 'screens/dashboard/explore-spaces'; import { MySpaces } from 'screens/dashboard/my-spaces'; import { UpComing } from 'screens/dashboard/up-coming'; export const Router = () => { return useRoutes([ { path: 'dashboard', element: , children: [ { path: 'upcoming', element: , }, { path: 'spaces', element: , }, { path: 'explore', element: , }, ], }, { path: 'dashboard', element: , children: [ { path: 'upcoming', element: , }, { path: 'spaces', element: , }, { path: 'explore', element: , }, ], }, ]); };