mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-21 00:40:09 +00:00
feat: create dashboard component
This commit is contained in:
parent
d161e455e7
commit
934bc4855e
@ -13,6 +13,7 @@ import PinnedNotification from './components/General/PinnedNottification'
|
||||
import { RootState } from './redux/store'
|
||||
import CreateLocalNodePage from './pages/CreateLocalNodePage/CreateLocalNodePage'
|
||||
import ValidatorOnboarding from './pages/ValidatorOnboarding/ValidatorOnboarding'
|
||||
import Dashboard from './pages/Dashboard/Dashboard'
|
||||
|
||||
const router = createBrowserRouter([
|
||||
{
|
||||
@ -37,6 +38,7 @@ const router = createBrowserRouter([
|
||||
},
|
||||
{ path: '/create-local-node', element: <CreateLocalNodePage /> },
|
||||
{ path: '/validator-onboarding', element: <ValidatorOnboarding /> },
|
||||
{ path: '/dashboard', element: <Dashboard /> },
|
||||
])
|
||||
|
||||
function App() {
|
||||
|
7
src/pages/Dashboard/Dashboard.tsx
Normal file
7
src/pages/Dashboard/Dashboard.tsx
Normal file
@ -0,0 +1,7 @@
|
||||
import { XStack } from 'tamagui'
|
||||
|
||||
const Dashboard = () => {
|
||||
return <XStack></XStack>
|
||||
}
|
||||
|
||||
export default Dashboard
|
Loading…
x
Reference in New Issue
Block a user