0.1.0 • Published 4 years ago

@sinoform/comp-layout-config-item v0.1.0

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

@sinoform/comp-layout-config-item

字段项在表单中布局的设置组件。

安装

yarn add @sinoform/comp-layout-config-item

使用

需要在Form上下文中使用。

import { Form } from '@sinoui/sinoui-components-forms';
import LayoutConfigItem from '@sinoform/comp-layout-config-item';

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