import classNames from 'classnames'; import React from 'react'; import { useHistory } from 'react-router-dom'; import Helmet from 'soapbox/components/helmet'; import { Card, CardBody, CardHeader, CardTitle } from '../card/card'; interface IColumn { backHref?: string, label?: string, transparent?: boolean, withHeader?: boolean, className?: string, } const Column: React.FC = React.forwardRef((props, ref: React.ForwardedRef): JSX.Element => { const { backHref, children, label, transparent = false, withHeader = true, className } = props; const history = useHistory(); const handleBackClick = () => { if (backHref) { history.push(backHref); return; } if (history.length === 1) { history.push('/'); } else { history.goBack(); } }; const renderChildren = () => { if (transparent) { return
{children}
; } return ( {withHeader ? ( ) : null} {children} ); }; return (
{label} {renderChildren()}
); }); export default Column;