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