cs-2022-class-profile/components/CenterComponentWrapper.tsx

26 lines
526 B
TypeScript

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 (
<section className={styles.wrapper}>
<div>
<h3>{heading}</h3>
<p className={styles.body}>{body}</p>
</div>
<div className={styles.graphWrapper}>{children}</div>
</section>
);
}