styles: BlogsList change flex -> grid

This commit is contained in:
unknown
2021-09-08 19:07:27 +07:00
parent 24a706e972
commit a58d30d528
7 changed files with 43 additions and 43 deletions

View File

@@ -1,6 +1,7 @@
import { Layout } from 'src/components/common';
import { BlogsList, FeaturedCardBlog, BlogHeading, BlogBreadCrumb } from 'src/components/modules/blogs';
const BlogsPage = () => {
export default function BlogsPage() {
return(
<>
<BlogBreadCrumb />
@@ -10,4 +11,4 @@ const BlogsPage = () => {
</>
)
}
export default BlogsPage
BlogsPage.Layout = Layout