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