UNPKG

@gsretail.com/gui-core

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

9 lines (8 loc) 288 B
import PageFormContainer from './PageFormContainer'; import { Field, Section } from './sub'; declare type PageFormComponent = typeof PageFormContainer & { Section: typeof Section; Field: typeof Field; }; declare const PageForm: PageFormComponent; export default PageForm;