import React from "react"; import styles from "./CenterComponentWrapper.module.css"; type FullComponentWrapperProps = { children: React.ReactNode; heading: string; body: string; }; export function CenterComponentWrapper({ heading, body, children, }: FullComponentWrapperProps) { return (

{heading}

{body}

{children}
); }