From b11d387249dde643462d2feb8628b99b10046d95 Mon Sep 17 00:00:00 2001 From: Ivana Andersson Date: Tue, 15 Aug 2023 09:43:36 +0300 Subject: [PATCH] feat: add route for connection page --- src/App.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 177ea5ef..6198ed8c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import './App.css' import config from '../tamagui.config' import LandingPage from './components/LandingPage' import DeviceHealthCheck from './pages/DeviceHealthCheck/DeviceHealthCheck' +import ContentPage from './components/ConnectionPage' const router = createBrowserRouter([ { @@ -15,6 +16,10 @@ const router = createBrowserRouter([ path: '/device-health-check', element: , }, + { + path: '/connection-page', + element: , + }, ]) function App() {