import React, { FunctionComponent } from 'react'; import style from '../web.module.scss'; type ComponentProps = { }; export const Home: FunctionComponent = (props): JSX.Element => { return (
 
); };