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