13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
import BlogsPage from "@/components/blogs";
|
|
import Layout from "@/components/layout/StLayout";
|
|
|
|
function Blogs() {
|
|
return (
|
|
<Layout name="/blogs">
|
|
<BlogsPage />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default Blogs;
|