feat: create DeviceHealthCheck component

This commit is contained in:
RadoslavDimchev 2023-08-11 12:56:06 +03:00
parent 1f98face5b
commit c9e71aef8a
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import { YStack } from 'tamagui'
import LayoutComponent from '../../components/LayoutComponent'
const DeviceHealthCheck = () => {
return (
<LayoutComponent
content={<DeviceHeanlthCheckContent />}
rightImageSrc="/background-images/eye-background.png"
/>
)
}
export default DeviceHealthCheck
const DeviceHeanlthCheckContent = () => {
return (
<div className="container-inner landing-page">
<YStack></YStack>
</div>
)
}