www-new/components/ShapesBackground.tsx

13 lines
305 B
TypeScript

import React from "react";
import styles from "./ShapesBackground.module.css";
export function ShapesBackground(props: { children: React.ReactNode }) {
return (
<div className={styles.contentContainer}>
<div className={styles.shapesContainer}></div>
{props.children}
</div>
);
}