import React from 'react'; import PropTypes from 'prop-types'; import styles from './Category.css'; import { Slot } from 'plugin-api/beta/client/components'; const childFactory = child => (
  • {child}
  • ); const Category = ({ slot, title, slotPassthrough }) => { return (
    {title}
    ); }; Category.propTypes = { slot: PropTypes.string.isRequired, title: PropTypes.string.isRequired, slotPassthrough: PropTypes.object.isRequired, }; export default Category;