issue-167 Add admin parts page

resolves #167
This commit is contained in:
Kurt Hutten
2020-12-19 18:25:44 +11:00
parent ee11f164a3
commit f0cba9c1e5
5 changed files with 182 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import MainLayout from 'src/layouts/MainLayout'
import AdminPartsCell from 'src/components/AdminPartsCell'
const PartsPage = () => {
return (
<MainLayout>
<AdminPartsCell />
</MainLayout>
)
}
export default PartsPage