rsuite
Version:
A suite of react components
10 lines (9 loc) • 301 B
TypeScript
import Grid from './Grid';
import Row from './Row';
import Col from './Col';
export type { GridProps } from './Grid';
export type { RowProps } from './Row';
export type { ColProps } from './Col';
export type { RowAlignment, RowJustify } from './types';
export { Grid, Row, Col };
export default Grid;