import * as React from 'react'; import styles from './InnerPaneSidebar.sass'; import classnames from 'classnames'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { Title } from '../../text/Title/Title'; interface IProps extends IReactComponentProps { title: string; } export function InnerPaneSidebar (props: IReactComponentProps) { return (
{props.children}
); } export function InnerPaneSidebarHeader (props: IProps) { return (
{props.title} { props.children ?
{props.children}
: '' }
); } export function InnerPaneSidebarAddNew (props: IReactComponentProps) { return (
{props.children}
); } export function InnerPaneSidebarContent (props: IReactComponentProps) { return (
{props.children}
); } export function InnerPaneSidebarContentItem (props: IReactComponentProps) { return (
{props.children}
); }