Upgrading from MUI4-MUI5 using tss-react in some files we have multiple styles import
const { classes } = GridStyles();
const { classes } = IntakeTableStyles();
const { classes } = CommonThemeStyles();
and it shows 'Cannot redeclare block-scoped variable 'classes'' error is there any way to import multiple makeStyles?
Trying to import multiple makeStyles
const { classes } = GridStyles();
const { classes } = IntakeTableStyles();
const { classes } = CommonThemeStyles();
i need to name each styles with different name instead of classes