feat: add route for the new page

This commit is contained in:
RadoslavDimchev 2023-08-11 13:04:02 +03:00
parent c9e71aef8a
commit 5fcc98ee50
1 changed files with 5 additions and 0 deletions

View File

@ -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() {