@mui/codemod
Version:
Codemod scripts for Material UI.
29 lines (28 loc) • 399 B
JavaScript
"use strict";
fn({
MuiPopper: {
defaultProps: {
slots: {
root: ComponentsRoot
},
slotProps: {
root: componentsRootProps
}
}
}
});
fn({
MuiPopper: {
defaultProps: {
slots: {
root: SlotsRoot
},
slotProps: {
root: {
...componentsRootProps,
...slotsRootProps
}
}
}
}
});