From 5fcc98ee5064b23ef8c3fc9873503aff97b437bb Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 11 Aug 2023 13:04:02 +0300 Subject: [PATCH] feat: add route for the new page --- src/App.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 0e64f693..177ea5ef 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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: , }, + { + path: '/device-health-check', + element: , + }, ]) function App() {