Justin Sun
Justin Sun
使用React Hook和Typescript,类型安全地管理对话框组件,减少对话框组件开发复用时的心智负担,极大提升开发体验 - 开源地址:https://github.com/jsun969/react-hook-dialog - 示例代码: - [Material UI](https://codesandbox.io/s/rhd-mui-example-etwz20) - [Ant Design](https://codesandbox.io/s/rhd-antd-example-qhj7zy)
```ts const dialogs = createDialogs({ firstDialog: { one: '' }, secondDialog: { two: '', three: '' }, }); ``` ```ts const { open } = dialog.useDialog('firstDialog') open({ }) // ^...
 When devtools panel is in the bottom. Style need to be changed (maybe left-right layout).