我有一個非常簡單的問題。我試著把marginButtom放到文本欄里。我不知道為什么它沒有利潤。
請檢查這個codesandbox鏈接
點擊這里
密碼
<label>Schedule</label>
<TextField
fullWidth
name="schedule"
type="date"
variant="outlined"
className={classes.marginButtom}
/>
這是因為您的樣式對象中有一個打印錯誤。
marginButtom: {
marginButtom: "10px" // It should be marginBottom instead of marginButtom
},