UNPKG

projex-ui-dev

Version:

Projex' user interface

7 lines (6 loc) 211 B
import React, { PropsWithChildren } from 'react'; type Props = PropsWithChildren<{ type?: 'classic' | 'narrow'; }>; declare const Grid: ({ type, children }: Props) => React.JSX.Element; export default Grid;