From c9e71aef8ab87fcae3038efb654204a5bb3c848c Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Fri, 11 Aug 2023 12:56:06 +0300 Subject: [PATCH] feat: create DeviceHealthCheck component --- .../DeviceHealthCheck/DeviceHealthCheck.tsx | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx diff --git a/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx b/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx new file mode 100644 index 00000000..93a7cc20 --- /dev/null +++ b/src/pages/DeviceHealthCheck/DeviceHealthCheck.tsx @@ -0,0 +1,21 @@ +import { YStack } from 'tamagui' +import LayoutComponent from '../../components/LayoutComponent' + +const DeviceHealthCheck = () => { + return ( + } + rightImageSrc="/background-images/eye-background.png" + /> + ) +} + +export default DeviceHealthCheck + +const DeviceHeanlthCheckContent = () => { + return ( +
+ +
+ ) +}