6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import MuiButton, { ButtonProps } from '@mui/material/Button';
|
|
|
|
export const Button = (props: ButtonProps) => {
|
|
return <MuiButton {...props} />;
|
|
};
|