UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

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