// material-ui import { Grid, Typography, Stack, Button, } from '@mui/material'; import { useNavigate } from "react-router-dom"; import * as DateUtils from "utils/DateUtils"; import titleBackgroundImg from 'assets/images/dashboard/gazette-bar.png' import { FormattedMessage, useIntl } from "react-intl"; const BackgroundHead = { backgroundImage: `url(${titleBackgroundImg})`, width: '100%', height: '100%', backgroundSize: 'contain', backgroundRepeat: 'no-repeat', backgroundColor: '#0C489E', backgroundPosition: 'right' } // ==============================|| DASHBOARD - DEFAULT ||============================== // const Index = ({ record }) => { const navigate = useNavigate() const intl = useIntl(); return ( (
{/*row 1*/}



{/*row 2*/}
) ); }; export default Index;