PanelOptionGrid.tsx 267 B

123456789101112131415
  1. import React, { SFC } from 'react';
  2. interface Props {
  3. cols?: number;
  4. children: JSX.Element[] | JSX.Element;
  5. }
  6. export const PanelOptionGrid: SFC<Props> = ({ children }) => {
  7. return (
  8. <div className="panel-option-grid">
  9. {children}
  10. </div>
  11. );
  12. };