Files
the-biergarten-app/pages/index.tsx
Aaron William Po 0065525f5c Add beer post, brewery post GET service and page
Add prettier, eslint config
2023-01-22 20:56:33 -05:00

8 lines
163 B
TypeScript

import { NextPage } from 'next';
const Home: NextPage = () => {
return <h1 className="text-3xl font-bold underline">Hello world!</h1>;
};
export default Home;