File tree Expand file tree Collapse file tree
src/frontend/src/pages/AdminToolsPage Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { Grid } from '@mui/material' ;
2- import PageBlock from '../../layouts/PageBlock' ;
1+ import { Grid , Typography } from '@mui/material' ;
32import ManufacturerTable from './BOMConfig/ManufacturerTable' ;
43import MaterialTypeTable from './BOMConfig/MaterialTypeTable' ;
54import UnitTable from './BOMConfig/UnitTable' ;
5+ import { Box } from '@mui/system' ;
66
77const AdminToolsBOMConfig : React . FC = ( ) => {
88 return (
9- < PageBlock title = "Bill of Material Config" >
9+ < Box >
10+ < Typography variant = "h5" gutterBottom >
11+ Bill of Materials Config
12+ </ Typography >
1013 < Grid container spacing = "3%" >
1114 < Grid item direction = "column" xs = { 12 } md = { 6 } >
1215 < ManufacturerTable />
@@ -18,7 +21,7 @@ const AdminToolsBOMConfig: React.FC = () => {
1821 < UnitTable />
1922 </ Grid >
2023 </ Grid >
21- </ PageBlock >
24+ </ Box >
2225 ) ;
2326} ;
2427
Original file line number Diff line number Diff line change 1- import PageBlock from '../../layouts/PageBlock ' ;
1+ import { Box } from '@mui/system ' ;
22import LinkTypeTable from './ProjectsConfig/LinkTypeTable' ;
3+ import { Typography } from '@mui/material' ;
34
45const AdminToolsProjectsConfig : React . FC = ( ) => {
56 return (
6- < PageBlock title = "Projects Config" >
7+ < Box >
8+ < Typography variant = "h5" gutterBottom >
9+ Projects Config
10+ </ Typography >
711 < LinkTypeTable />
8- </ PageBlock >
12+ </ Box >
913 ) ;
1014} ;
1115
You can’t perform that action at this time.
0 commit comments