import React from "react"; const UsernameInput = React.forwardRef((props, ref) => ( // todo, check if username is already taken here?
{typeof window !== "undefined" && window.location.hostname}/
)); UsernameInput.displayName = "UsernameInput"; export { UsernameInput };