-
Notifications
You must be signed in to change notification settings - Fork 0
/
drafts.tsx
49 lines (43 loc) · 1.03 KB
/
drafts.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import React from "react"
import { GetServerSideProps } from "next"
import Layout from "../components/Layout"
import Post, { PostProps } from "../components/Post"
type Props = {
drafts: PostProps[]
}
const Drafts: React.FC<Props> = (props) => {
return (
<Layout>
<div className="page">
<h1>Drafts</h1>
<main>
{props.drafts.map((post) => (
<div key={post.id} className="post">
<Post post={post} />
</div>
))}
</main>
</div>
<style jsx>{`
.post {
background: white;
transition: box-shadow 0.1s ease-in;
}
.post:hover {
box-shadow: 1px 1px 3px #aaa;
}
.post + .post {
margin-top: 2rem;
}
`}</style>
</Layout>
)
}
export const getServerSideProps: GetServerSideProps = async () => {
const res = await fetch("http://localhost:3000/api/drafts")
const drafts = await res.json()
return {
props: { drafts },
}
}
export default Drafts