i-darrshan's picture
initial_update
e08ecbf
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;