import React from 'react'; import { GroupPage } from '../GroupPage'; import { Section } from '../Section'; export function GenericGroupPage({ _id, sections, ...group }) { const solo = sections.length === 1; return {sections.map((sectionName) =>
)} ; }