File size: 234 Bytes
e08ecbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import React from "react";
import Hero from "../sections/jobs/Hero";
import JobSection from "../sections/jobs/Jobsection";
const Jobs = () => {
return (
<>
<Hero/>
<JobSection/>
</>
);
};
export default Jobs; |