mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Add beer post, brewery post GET service and page
Add prettier, eslint config
This commit is contained in:
@@ -1,24 +1,7 @@
|
||||
import { PrismaClient } from "@prisma/client";
|
||||
import type { BeerPost } from "@prisma/client";
|
||||
import { GetServerSideProps, NextPage } from "next";
|
||||
import { NextPage } from 'next';
|
||||
|
||||
export const getServerSideProps: GetServerSideProps<{}> = async () => {
|
||||
const prisma = new PrismaClient();
|
||||
const beerPosts = await prisma.beerPost.findMany();
|
||||
|
||||
return {
|
||||
props: {
|
||||
beerPosts,
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
interface HomePageProps {
|
||||
beerPosts: BeerPost[];
|
||||
}
|
||||
const Home: NextPage<HomePageProps> = ({ beerPosts }) => {
|
||||
console.log(beerPosts);
|
||||
return <h1 className="text-3xl font-bold underline">Hello world!</h1>;
|
||||
const Home: NextPage = () => {
|
||||
return <h1 className="text-3xl font-bold underline">Hello world!</h1>;
|
||||
};
|
||||
|
||||
export default Home;
|
||||
|
||||
Reference in New Issue
Block a user