remove: blogpages components

This commit is contained in:
unknown 2021-09-08 17:39:51 +07:00
parent e7df9201fb
commit bd3fe6b18d
2 changed files with 13 additions and 13 deletions

View File

@ -0,0 +1,13 @@
import { BlogsList, FeaturedCardBlog, BlogHeading, BlogBreadCrumb } from 'src/components/modules/blogs';
const BlogsPage = () => {
return(
<>
<BlogBreadCrumb />
<BlogHeading />
<FeaturedCardBlog />
<BlogsList />
</>
)
}
export default BlogsPage

View File

@ -1,13 +0,0 @@
import { BlogsList, FeaturedCardBlog, BlogHeading, BlogBreadCrumb } from 'src/components/modules/blogs';
const BlogsPage = () => {
return(
<>
<BlogBreadCrumb />
<BlogHeading />
<FeaturedCardBlog />
<BlogsList />
</>
)
}
export default BlogsPage