stacker.news/pages/post.js

11 lines
203 B
JavaScript
Raw Normal View History

2021-05-06 21:15:22 +00:00
import LayoutCenter from '../components/layout-center'
2023-05-11 00:26:07 +00:00
import Post from '../components/post'
2022-04-21 22:50:02 +00:00
2023-05-11 00:26:07 +00:00
export default function PostPage () {
2021-04-12 18:05:09 +00:00
return (
2021-05-06 21:15:22 +00:00
<LayoutCenter>
2023-05-11 00:26:07 +00:00
<Post />
2021-05-06 21:15:22 +00:00
</LayoutCenter>
2021-04-12 18:05:09 +00:00
)
}