-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: add tenant management page (#2483)
* Initial commit: add tenant management page * Update change log * Add super admin role to side-nav test
- Loading branch information
1 parent
645728a
commit 128b4b3
Showing
5 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Box, Typography } from '@mui/material'; | ||
import React from 'react'; | ||
|
||
const TenantManagement = () => { | ||
return ( | ||
<Box sx={{ padding: '2.1em', width: '100%' }}> | ||
<Typography variant="subtitle1">This is the tenant management page!</Typography> | ||
{/* todo: the rest of the page */} | ||
</Box> | ||
); | ||
}; | ||
|
||
export default TenantManagement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters