i-darrshan's picture
initial push of the update
8b105ad
raw
history blame contribute delete
245 Bytes
import React from "react";
import Hero from "../sections/blogs/Hero";
import Blogsection from "../sections/blogs/Blogsection";
const Blogs = () => {
return (
<>
<Hero />
<Blogsection />
</>
);
};
export default Blogs;