import { FC } from 'react' import styles from './AuthLayout.module.scss' const AuthLayout: FC = (props) => (
{props.children}
) interface AuthFieldProps { name: string required?: boolean type: 'text' | 'password' } const AuthField: FC = (props) => { return (
) } interface AuthPasswordProps { name: string required?: boolean } export const AuthPassword: FC = (props) => ( ) interface AuthInputProps { name: string required?: boolean } export const AuthInput: FC = (props) => ( ) export default AuthLayout