UNPKG

@gsretail.com/gui-core

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

8 lines (7 loc) 222 B
import { GridProps } from '@mui/material'; import React from 'react'; interface Props extends GridProps { width?: string | number; } declare const PanelGroupView: React.FC<Props>; export default PanelGroupView;