feat: add route for the new page
This commit is contained in:
parent
c9e71aef8a
commit
5fcc98ee50
|
@ -4,12 +4,17 @@ import { Provider as StatusProvider } from '@status-im/components'
|
||||||
import './App.css'
|
import './App.css'
|
||||||
import config from '../tamagui.config'
|
import config from '../tamagui.config'
|
||||||
import LandingPage from './components/LandingPage'
|
import LandingPage from './components/LandingPage'
|
||||||
|
import DeviceHealthCheck from './pages/DeviceHealthCheck/DeviceHealthCheck'
|
||||||
|
|
||||||
const router = createBrowserRouter([
|
const router = createBrowserRouter([
|
||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
element: <LandingPage />,
|
element: <LandingPage />,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/device-health-check',
|
||||||
|
element: <DeviceHealthCheck />,
|
||||||
|
},
|
||||||
])
|
])
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
|
|
Loading…
Reference in New Issue