File size: 245 Bytes
62c3fe0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from "react";
import Hero from "../sections/blogs/Hero";
import Blogsection from "../sections/blogs/Blogsection";
const Blogs = () => {
return (
<>
<Hero />
<Blogsection />
</>
);
};
export default Blogs;
|