import React from 'react'; import { Page } from '../../components/Page'; import './index.css'; export const Home = () => { return ( <Page> <h1>Home</h1> </Page> ); }