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