Skip to content
Snippets Groups Projects
index.tsx 185 B
Newer Older
  • Learn to ignore specific revisions
  • Jacopo Gasparetto's avatar
    Jacopo Gasparetto committed
    import React from 'react';
    import { Page } from '../../components/Page';
    import './index.css';
    
    export const Home = () => {
      return (
        <Page>
          <h1>Home</h1>
        </Page>
      );
    }