import React, { useEffect, useRef, useState } from 'react'; import Box from '@mui/material/Box'; import useMediaQuery from '@mui/material/useMediaQuery'; import { SxProps, useTheme } from '@mui/material/styles'; import './ComingSoon.css'; type ComingSoonProps = { children?: React.ReactNode; } const ComingSoon: React.FC = (props : ComingSoonProps) => { const { children } = props; const theme = useTheme(); return ( Coming Soon {children} ); }; export { ComingSoon };