从"@material-ui/core": "3.9.2",
to升级后,"@material-ui/core": "^4.0.0-rc.0",
我遇到了一些 CSS 问题。
输入示例,一些 css:height: auto !important;
似乎丢失了:
我的配置与此处相同:https ://material-ui.com/getting-started/installation/
我的代码非常基本:
<FormControl>
<InputLabel htmlFor="email">{`Your email address`}</InputLabel>
<Input
id="email"
onChange={e => this.setState({ email: e.target.value })}
type="text"
onKeyPress={this.handleKeyPress}
value={this.state.email}
/>
</FormControl>