import React from 'react'; import Markdownify from '../components/markdownify'; const Community = ({ headline, subhead, sections }) => (

{sections.map(({ title: sectionTitle, channels }, channelIdx) => (

{sectionTitle}

))}
); export default Community;