UNPKG

@gsretail.com/gui-core

Version:

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

10 lines (9 loc) 411 B
import PageContentHeaderContainer from './PageContentHeader'; import TitleView from './sub/Title/TitleView'; import ActionsView from './sub/Actions/ActionsView'; declare type PageContentHeaderComponent = typeof PageContentHeaderContainer & { Title: typeof TitleView; Actions: typeof ActionsView; }; declare const PageContentHeader: PageContentHeaderComponent; export default PageContentHeader;