1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-08 23:10:05 +00:00

Merge branch 'main' into issue-139

This commit is contained in:
2022-06-23 17:21:52 +05:00
108 changed files with 15072 additions and 2645 deletions

View File

@@ -6,6 +6,7 @@ import TabList from '@mui/lab/TabList'
import TabPanel from '@mui/lab/TabPanel'
import Permission from './permission'
import Profile from './profile'
const StyledTab = styled(Tab)({
background: 'black',
@@ -45,7 +46,9 @@ const Settings = () => {
<StyledTab label="Permission" value="permission" />
</TabList>
</Box>
<StyledTabpanel value="profile">Profile Page</StyledTabpanel>
<StyledTabpanel value="profile">
<Profile />
</StyledTabpanel>
<StyledTabpanel value="permission">
<Permission />
</StyledTabpanel>