I am attempting to implement this function within my dark-colored footer:
import Typography from '@material-ui/core/Typography';
function Copyright() {
return (
<Typography variant="body2" color="textSecondary" align="center">
{'Copyright © '}
<Link color="inherit" href="https://material-ui.com/">
Your Website
</Link>{' '}
{new Date().getFullYear()}
{'.'}
</Typography>
);
}
export default function App() {
return (
<Container >
<Header></Header>
<Typography variant="h4" component="h1" gutterBottom style={{color: 'white'}}>
Instaride Web App
</Typography>
<Copyright />
<Footer></Footer>
</Container>
);
}
However, I am having trouble changing the text color to white. How can I modify this default function? Whenever I attempt to alter any of the colors, an error stating:
No overload matches this call.