React Material TextFields 中的边距

React Material Margin in TextFields

我有一个非常简单的问题。我试图将 marginButtom 放在 TextFields 上。我不知道为什么它没有给它任何保证金。

请检查这个代码框link

CLICK HERE

代码

      <label>Schedule</label>
          <TextField
            fullWidth
            name="schedule"
            type="date"
            variant="outlined"
            className={classes.marginButtom}
          />

那是因为您的样式对象中有错字。

  marginButtom: {
    marginButtom: "10px" // It should be marginBottom instead of marginButtom
  },