Rename BlogPostPage -> ArticlePage

This commit is contained in:
Rob Cameron
2022-02-08 14:49:01 -08:00
parent 9ca3046cc4
commit ab61793bcf
6 changed files with 23 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
import BlogPostCell from 'src/components/BlogPostCell'
const ArticlePage = ({ id }) => {
return <BlogPostCell id={id} />
}
export default ArticlePage