import React from "react"; interface DottedGridBackgroundProps { children: React.ReactNode; className?: string; } const DottedGridBackground = ({ children, className, }: DottedGridBackgroundProps) => { return (
{children}
); }; export default DottedGridBackground;