You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Converts all @material-ui/core imports more than 1 level deep to the optimal form for tree shaking:
Before
-import withStyles from '@material-ui/core/styles/withStyles';
-import createMuiTheme from '@material-ui/core/styles/createMuiTheme';
=>
after V.4.0
+import { withStyles, createMuiTheme } from '@material-ui/core/styles';
top-level-imports
Converts all @material-ui/core submodule imports to the root module:
before
-import List from '@material-ui/core/List';
-import { withStyles } from '@material-ui/core/styles';
after 4.0
+import { List, withStyles } from '@material-ui/core';
Type: minor
Describe the bug
Template generator script has syntax errors and doesn't follow the best practices for Catalyst components.
The text was updated successfully, but these errors were encountered: