11 lines
203 B
JavaScript
Raw Normal View History

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