Add job implemented

This commit was merged in pull request #57.
This commit is contained in:
victorAnumudu
2023-05-11 21:33:34 +01:00
parent 63861ea32c
commit 8132bb6f3f
9 changed files with 555 additions and 119 deletions
+14
View File
@@ -0,0 +1,14 @@
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