feat: Split string

This commit is contained in:
Ibrahima G. Coulibaly 2024-06-19 21:18:35 +01:00
commit 19f0de8909
18 changed files with 305 additions and 20 deletions

11
src/config/muiConfig.ts Normal file
View file

@ -0,0 +1,11 @@
import {createTheme} from "@mui/material";
const theme = createTheme({
typography: {
button: {
textTransform: 'none'
}
}
});
export default theme;