UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

7 lines 256 B
import { deepmerge } from '@material-ui/utils'; import createMuiTheme from './createMuiTheme'; export default function createMuiStrictModeTheme(options, ...args) { return createMuiTheme(deepmerge({ unstable_strictMode: true }, options), ...args); }