@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
15 lines (14 loc) • 474 B
TypeScript
import React from 'react';
import { GridProps } from '@mui/material';
interface Props extends GridProps {
horizontal?: boolean;
columnSize?: ColumnSize;
}
declare type ColumnSize = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
declare const PageFormContainer: React.FC<Props>;
declare const FormContext: React.Context<{
horizontal: boolean;
columnSize: ColumnSize;
}>;
export default PageFormContainer;
export { FormContext, ColumnSize, };