init: add fuse-react v8.3.5 skeleton
This commit is contained in:
35
src/app/main/sign-up/SignUpConfig.js
Normal file
35
src/app/main/sign-up/SignUpConfig.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import SignUpPage from './SignUpPage';
|
||||
import authRoles from '../../auth/authRoles';
|
||||
|
||||
const SignUpConfig = {
|
||||
settings: {
|
||||
layout: {
|
||||
config: {
|
||||
navbar: {
|
||||
display: false,
|
||||
},
|
||||
toolbar: {
|
||||
display: false,
|
||||
},
|
||||
footer: {
|
||||
display: false,
|
||||
},
|
||||
leftSidePanel: {
|
||||
display: false,
|
||||
},
|
||||
rightSidePanel: {
|
||||
display: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
auth: authRoles.onlyGuest,
|
||||
routes: [
|
||||
{
|
||||
path: 'sign-up',
|
||||
element: <SignUpPage />,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default SignUpConfig;
|
||||
Reference in New Issue
Block a user