應用於 隊名、隊長的填寫欄位
另外調整:將 label name 與 輸入框放同一行。
<div style={{display:"inline-block"}}>
隊名:
</div>
<div style={{display:"inline-block"}}>
<Input showCount maxLength={20} onChange={onChange}/>
</div>
<br/>
<br/>
<div style={{display:"inline-block"}}>
隊長:
</div>
<div style={{display:"inline-block"}}>
<Input showCount maxLength={20} onChange={onChange}/>
</div>
As-is
<Table columns={columns} dataSource={dataSource} ref={(el) => (componentRef = el)}/>
Now
<Layout ref={(el) => (componentRef = el)}>
仿造 Form 排版(非全部),試圖把隊名,隊長的填寫加入網頁。