Files
Users-Wrench/src/views/AddJobPage.jsx
T
2023-05-11 21:33:34 +01:00

14 lines
241 B
React

import React from 'react'
import AddJob from '../components/AddJob/AddJob'
import Layout from '../components/Partials/Layout'
function AddJobPage() {
return (
<Layout>
<AddJob />
</Layout>
)
}
export default AddJobPage