import styles from "./screen-container.module.css" interface Props { children: React.ReactNode } const ScreenContainer = ({ children }: Props) => { return (
{children}
) } export default ScreenContainer