import { PureComponent, PropsWithChildren } from "react"; interface Props extends PropsWithChildren { className: string; } export default class Subsections extends PureComponent { static defaultProps = { className: "", }; render() { const { className } = this.props; return (
{this.props.children}
); } }