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 { Box , Grid , Typography } from '@mui/material' ;
32import VendorsTable from './FinanceConfig/VendorsTable' ;
43import AccountCodesTable from './FinanceConfig/AccountCodesTable' ;
54
65const AdminToolsFinanceConfig : React . FC = ( ) => {
76 return (
8- < PageBlock title = "Finance Config" >
7+ < Box padding = "5px" >
8+ < Typography marginBottom = "15px" variant = "h5" >
9+ Finance Config
10+ </ Typography >
911 < Grid container spacing = "3%" >
1012 < Grid item direction = "column" xs = { 12 } md = { 6 } >
1113 < VendorsTable />
@@ -14,7 +16,7 @@ const AdminToolsFinanceConfig: React.FC = () => {
1416 < AccountCodesTable />
1517 </ Grid >
1618 </ Grid >
17- </ PageBlock >
19+ </ Box >
1820 ) ;
1921} ;
2022
You can’t perform that action at this time.
0 commit comments