16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
|
|
import Link from '@mui/material/Link';
|
||
|
|
|
||
|
|
export default function ButtonLink() {
|
||
|
|
return (
|
||
|
|
<Link
|
||
|
|
component="button"
|
||
|
|
variant="body2"
|
||
|
|
onClick={() => {
|
||
|
|
console.info("I'm a button.");
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
Button Link
|
||
|
|
</Link>
|
||
|
|
);
|
||
|
|
}
|