1
0
Fork 0
react-playground/node_modules/@mui/material/esm/styles/createMuiStrictModeTheme.js

7 lines
No EOL
248 B
JavaScript

import deepmerge from '@mui/utils/deepmerge';
import createTheme from "./createTheme.js";
export default function createMuiStrictModeTheme(options, ...args) {
return createTheme(deepmerge({
unstable_strictMode: true
}, options), ...args);
}