现在想要传递一个初始化的表单数据到 `useState` 里而且表单里的字段是通过接口出来的,但现在根据文档参数被 `{}` 限制了,想问下额外的参数要怎么传递?`` {form.item.map((item: Item, key: number) => ( ))} interface Item { name: string, column: string, value: any, container?: string, Attrs: Attr, } const Item: React.FC = ( props: Item ) => { console.log(props) switch (props.container) { case 'input': return } }  可以看到接口中是有 `value` 的但是到了组件里就没了?这是什么奇怪的问题? 