@jengaui/layout
Version:
Jenga UI Layout component in React
9 lines (6 loc) • 328 B
TypeScript
import * as react from 'react';
import { BaseProps, ContainerStyleProps, ShortGridStyles } from 'tastycss';
interface JengaGridProps extends BaseProps, ContainerStyleProps, ShortGridStyles {
}
declare const Grid: react.ForwardRefExoticComponent<JengaGridProps & react.RefAttributes<unknown>>;
export { Grid, JengaGridProps };