Everything is ok , but my form consists select drop down in that im getting '-' in the first even though i didn't specify , how to remove it (You can see in screenshot)
const dForm = t.struct({
items:t.enums({
"30":"30",
"31":"31",
"32":"32",
"33":"33",
"34":"34",
"35":"35",
"36":"36",
"37":"37",
"38":"38",
"39":"39"
},"Items")
<t.form.Form
type={dForm}
ref="mandatory"
/>
so I am unable to see if you set the
initialState
in your component but you may want to have on yourcomponentDidMount
methodand set your state that way.