import React from "react"; import styles from "./SectionWrapper.module.css"; type SectionWrapperProps = { title: string; }; export function SectionWrapper({ title }: SectionWrapperProps) { return (

{title}

); }