import React from "react"; export default function GenderSwitch(props) { return ( <> {window.innerWidth > 1000 ? (
) : null} {window.innerWidth < 1000 ? (
) : null} ); }