import * as React from "react"; import "../style/quickCategory.scss"; interface Props { children: React.ReactNode; name: string; } class QuickCategory extends React.Component { constructor(props){ super(props); } render(): JSX.Element { return
{this.props.name}
{this.props.children}
; } } export default QuickCategory;