0.1.1 • Published 4 years ago

@sinoform/comp-select-for-todo-title v0.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

@sinoform/comp-select-for-todo-title

设置是否作为待办标题的组件。

安装

yarn add @sinoform/comp-select-for-todo-title

使用

需要在 Form 上下文中使用。

import SelectForTodoTitle from '@sinoform/comp-select-for-todo-title';
import { Form } from '@sinoui/sinoui-components-forms';

function Demo() {
  return (
    <Form>
      <SelectForTodoTitle />
    </Form>
  );
}