import React from 'react'; import styles from './panel.scss'; export function Panel(props) { var { title } = props; if (title) { title = ( {title} ); } return (
{title} {props.children}
); } export function PanelHeader(props) { return (
{props.children}
); } export function PanelBody(props) { return (
{props.children}
); } export function PanelFooter(props) { return (
{props.children}
); }