import React from 'react'; import { Section } from '../../components/Section'; import { PageSection } from '../../types'; import { getSectionBySectionId, useLocalDataSource } from './data'; export function LegalSection(props: PageSection): React.ReactElement { const response = useLocalDataSource(); const data = getSectionBySectionId(response, props.sectionId); return (
); }