
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Reactの入力フォームを仮想ウインドウ化する - Qiita
function FormComponent() { const todoModule = useModule(TodoModule); return ( <JSWindow>{/*←追加*... function FormComponent() { const todoModule = useModule(TodoModule); return ( <JSWindow>{/*←追加*/} <div style={{ textAlign: "center" }}> <div> <div>タイトル</div> <input style={{ width: "20em" }} value={todoModule.getState("input", "title")!} onChange={e => todoModule.setState(e.target.value, "input", "title")} /> <div>説明</div> <textarea style={{ width: "20em", height: "5em" }} value={todoModule.getSta
2019/10/08 リンク