@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
9 lines (8 loc) • 312 B
TypeScript
import GridHScroll from './GuiGridHScroll';
import { LeftButton, RightButton } from './sub';
declare type GuiGridHScrollComponent = typeof GridHScroll & {
Left: typeof LeftButton;
Right: typeof RightButton;
};
declare const GuiGridHScroll: GuiGridHScrollComponent;
export default GuiGridHScroll;