Searches all section areas for sections which satisfy the provided callback function and returns a single array of matching sections.
const matches = findSections(pageConfig, (areaSections: Section<MixedSection>[]) => areaSections.filter((section) => section.component === 'Embed')); Copy
const matches = findSections(pageConfig, (areaSections: Section<MixedSection>[]) => areaSections.filter((section) => section.component === 'Embed'));
Searches all section areas for sections which satisfy the provided callback function and returns a single array of matching sections.