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

{heading}

{body}

{children}
); }