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
The ListItem is not under the material-ui module directly but material-ui/List.
If I want to reduce the bundle size, how can I achieve the expected behavior?
Should a 'proxy' ListItem.js exists in the material-ui module directly to solve this kind of issue?
Your Environment
Tech
Version
Material-UI
v1.0.0-beta.45
React
browser
etc
The text was updated successfully, but these errors were encountered:
Expected Behavior
import { ListItem } from 'material-ui'
should convert to
import ListItem from 'material-ui/List/ListItem
Current Behavior
import { ListItem } from 'material-ui'
should convert to
import ListItem from 'material-ui/ListItem
Steps to Reproduce (for bugs)
.babelrc
Context
The ListItem is not under the material-ui module directly but material-ui/List.
If I want to reduce the bundle size, how can I achieve the expected behavior?
Should a 'proxy' ListItem.js exists in the material-ui module directly to solve this kind of issue?
Your Environment
The text was updated successfully, but these errors were encountered: