blob: 30844d63f352b1b8f77e383b363989f04bf3ae00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import * as React from "react";
import type { HeadFC, PageProps } from "gatsby";
import { Button } from "ui";
const IndexPage: React.FC<PageProps> = () => {
return (
<main>
<h1>Web</h1>
<Button />
</main>
);
};
export default IndexPage;
export const Head: HeadFC = () => <title>Home Page</title>;
|