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 config from '../tamagui.config'
|
||||
import LandingPage from './components/LandingPage'
|
||||
import DeviceHealthCheck from './pages/DeviceHealthCheck/DeviceHealthCheck'
|
||||
|
||||
const router = createBrowserRouter([
|
||||
{
|
||||
path: '/',
|
||||
element: <LandingPage />,
|
||||
},
|
||||
{
|
||||
path: '/device-health-check',
|
||||
element: <DeviceHealthCheck />,
|
||||
},
|
||||
])
|
||||
|
||||
function App() {
|
||||
|
|
Loading…
Reference in New Issue