Use a common layout for all pages

This commit is contained in:
Kurt Hutten
2020-11-02 07:09:22 +11:00
parent 86df1d501d
commit faffc0f46d
20 changed files with 48 additions and 143 deletions

View File

@@ -1,11 +1,11 @@
import UsersLayout from 'src/layouts/UsersLayout'
import MainLayout from 'src/layouts/MainLayout'
import NewUser from 'src/components/NewUser'
const NewUserPage = () => {
return (
<UsersLayout>
<MainLayout>
<NewUser />
</UsersLayout>
</MainLayout>
)
}