Skip to content

Instantly share code, notes, and snippets.

@Sanchithasharma
Created October 28, 2022 12:02
Show Gist options
  • Save Sanchithasharma/9635e1840c89b2e306d9c16748c7664c to your computer and use it in GitHub Desktop.
Save Sanchithasharma/9635e1840c89b2e306d9c16748c7664c to your computer and use it in GitHub Desktop.
Build MUI button component first
import Button from '@mui/material/Button';
type ButtonProps = {
label: string
}
function TextButton({label}: ButtonProps) {
return (
<>
<Button variant="contained">{label}</Button>
</>
)
}
export default TextButton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment