|
@@ -4,14 +4,15 @@ import Paper from "@mui/material/Paper"; |
|
|
import { TFunction } from "i18next"; |
|
|
import { TFunction } from "i18next"; |
|
|
import { useTranslation } from "react-i18next"; |
|
|
import { useTranslation } from "react-i18next"; |
|
|
import PageTitle from "../PageTitle/PageTitle"; |
|
|
import PageTitle from "../PageTitle/PageTitle"; |
|
|
|
|
|
import '../../app/global.css'; |
|
|
|
|
|
|
|
|
const DashboardTabButton: React.FC = () => { |
|
|
const DashboardTabButton: React.FC = () => { |
|
|
const { t } = useTranslation("dashboard"); |
|
|
const { t } = useTranslation("dashboard"); |
|
|
return ( |
|
|
return ( |
|
|
<Grid item sm> |
|
|
<Grid item sm> |
|
|
<div style={{marginLeft:20}}> |
|
|
<div style={{marginLeft:20}}> |
|
|
<button style={{height:40,width:250,fontSize:18,borderTopLeftRadius:10,borderBottomLeftRadius:10,borderWidth:2,backgroundColor:"transparent"}}>Project Financial Summary</button> |
|
|
|
|
|
<button style={{height:39,width:250,fontSize:18,borderTopWidth:2,borderBottomWidth:2,backgroundColor:"transparent"}}>Project Cash Flow</button> |
|
|
|
|
|
|
|
|
<button className="rounded-l-lg" style={{height:40,width:250,fontSize:18}}>Project Financial Summary</button> |
|
|
|
|
|
<button style={{height:39,width:250,fontSize:18}}>Project Cash Flow</button> |
|
|
</div> |
|
|
</div> |
|
|
</Grid> |
|
|
</Grid> |
|
|
); |
|
|
); |
|
|