// import { useState } from 'react'; // material-ui import { Grid, Typography, Stack } from '@mui/material'; import titleBackgroundImg from 'assets/images/dashboard/gazette-bar.png' // ==============================|| DASHBOARD - DEFAULT ||============================== // const DashboardDefault = () => { const userData = JSON.parse(localStorage.getItem("userData")); const BackgroundHead = { backgroundImage: `url(${titleBackgroundImg})`, width: '100%', height: '100%', backgroundSize:'cover' } return (
Morning, {userData.fullenName}
); }; export default DashboardDefault;