Repository URL to install this package:
Version:
0.1.0-sandbox.5 ▾
|
import { ReactNode } from 'react';
type Module = ReactNode | {
grow?: number;
module: ReactNode;
};
type Section = ReactNode | Module[][];
export declare function renderSections(sections: Section[], gap?: number | string): JSX.Element;
export {};