mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
adds eslint
This commit is contained in:

committed by
Geoff Seemueller

parent
9698fc6f3b
commit
02c3253343
@@ -1,22 +1,24 @@
|
||||
import React, { Fragment } from "react";
|
||||
import { Box, VStack } from "@chakra-ui/react";
|
||||
import PrivacyPolicy from "../../components/legal/LegalDoc";
|
||||
import privacy_policy from "./privacy_policy";
|
||||
import { useIsMobile } from "../../components/contexts/MobileContext";
|
||||
import { Box, VStack } from '@chakra-ui/react';
|
||||
import React, { Fragment } from 'react';
|
||||
|
||||
import { useIsMobile } from '../../components/contexts/MobileContext';
|
||||
import PrivacyPolicy from '../../components/legal/LegalDoc';
|
||||
|
||||
import privacy_policy from './privacy_policy';
|
||||
|
||||
export default function Page() {
|
||||
const isMobile = useIsMobile();
|
||||
return (
|
||||
<Fragment>
|
||||
<VStack
|
||||
width={"100%"}
|
||||
align={"center"}
|
||||
height={!isMobile ? "100%" : "100%"}
|
||||
overflowX={"auto"}
|
||||
width={'100%'}
|
||||
align={'center'}
|
||||
height={!isMobile ? '100%' : '100%'}
|
||||
overflowX={'auto'}
|
||||
>
|
||||
<Box
|
||||
overflowY={isMobile ? "scroll" : undefined}
|
||||
maxH={!isMobile ? "70vh" : "89vh"}
|
||||
overflowY={isMobile ? 'scroll' : undefined}
|
||||
maxH={!isMobile ? '70vh' : '89vh'}
|
||||
mt={isMobile ? 24 : undefined}
|
||||
>
|
||||
<PrivacyPolicy text={privacy_policy} />
|
||||
|
Reference in New Issue
Block a user