@mui/codemod
Version:
Codemod scripts for Material UI.
34 lines (33 loc) • 459 B
JavaScript
"use strict";
fn({
MuiTablePagination: {
defaultProps: {
slots: {
actions: 'div'
},
slotProps: {
select: {
native: true
}
}
}
}
});
fn({
MuiTablePagination: {
defaultProps: {
slotProps: {
root: {
id: 'test'
},
select: {
native: true
}
},
slots: {
root: 'div',
actions: 'div'
}
}
}
});