Is there a way to apply Bootstrap classes to @material-ui components? For example, I am attempting to create a button and style it using both 'btn' and 'btn-primary' from Bootstrap.
import { makeStyles } from "@material-ui/core";
import 'bootstrap/dist/css/bootstrap.min.css';
const useStyles = makeStyles((theme) => ({
btn: {
class : 'btn btn-primary',
padding : '2rem' ,
},
}));
export default useStyles;
If you have any advice or suggestions, please let me know. Thank you!