This commit is contained in:
Hristo Nedelkov 2023-08-16 09:12:32 +03:00
parent cdaf442c2f
commit 176fecdf29
2 changed files with 11 additions and 8 deletions

View File

@ -20,9 +20,12 @@ const router = createBrowserRouter([
{
path: '/connect-device',
element: <ConnectDevicePage />,
},
{
path: '/device-sync-status',
element: <DeviceSyncStatus />,
},
}
])
function App() {

View File

@ -1,17 +1,17 @@
import { Stack, YStack } from 'tamagui'
import LayoutComponent from '../../components/LayoutComponent'
import NimbusLogo from '../../components/NimbusLogo'
import Titles from '../../components/Titles'
import { Button, PinnedMessage } from '@status-im/components'
import SyncStatusCardExecution from '../../components/SyncStatusCardExecution'
import SyncStatusCardConsensus from '../../components/SyncStatusCardConsensus'
import Titles from '../../components/General/Titles'
import NimbusLogo from '../../components/Logos/NimbusLogo'
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
const DeviceSyncStatus = () => {
return (
<LayoutComponent
content={<DeviceSyncStatusContent />}
rightImageSrc="/background-images/sync-status-background.png"
/>
<PageWrapperShadow rightImageSrc="/background-images/sync-status-background.png">
<DeviceSyncStatusContent />
</PageWrapperShadow>
)
}