@mui/codemod
Version:
Codemod scripts for Material UI.
41 lines (40 loc) • 568 B
JavaScript
"use strict";
fn({
MuiStepContent: {
defaultProps: {
slots: {
transition: CustomTransition
},
slotProps: {
transition: {
unmountOnExit: true
}
}
}
}
});
fn({
MuiStepContent: {
defaultProps: {
slots: {
transition: SlotTransition
}
}
}
});
fn({
MuiStepContent: {
defaultProps: {
slotProps: {
transition: {
...{
unmountOnExit: true
},
...{
id: 'test'
}
}
}
}
}
});