umami/pages/index.js

11 lines
159 B
JavaScript

import React from 'react';
import Layout from 'components/layout';
export default function Home() {
return (
<Layout>
Hello.
</Layout>
);
}