feat: create DeviceHealthCheck component
This commit is contained in:
parent
1f98face5b
commit
c9e71aef8a
|
@ -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>
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue