Fixed link and implemented MUI

This commit is contained in:
Kristoffer Juelsenn 2022-03-22 15:49:12 +01:00
parent 4a2579db50
commit 2e52149e8e
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ import Button from "@mui/material/Button";
export default function ManageButton(props) {
return (
<Link to="/tournament/manage">
<Button className="ManageButton">Manage Tournament</Button>
<Link to="/tournament/manage" style={{textDecoration:'none'}}>
<Button className="ManageButton" variant="contained" color="primary">Manage Tournament</Button>
</Link>
);
}