import React from 'react' import type { SectionProps } from './section-types' export function Section({ alignRight, children, className }: SectionProps) { return (
{children}
) }