import React from "react"; import "./index.scss"; export default function Birthdate(props) { return ( <> {window.innerWidth < 1000 ? (
/ /
) : null} {window.innerWidth > 1000 ? (
/ /
) : null} ); } const Input = (props) => { const { name, placeholder, maxLength } = props; return ( ); };