import React from 'react'; import '../css/Listing.css'; const Listing = (props) => { /** * Listing - A subcomponent for making lists of content, mostly to make a list of links. * * * title - The title of the listing * children - JSX that is necessary in the content of the component */ return (
); }; export default Listing;