/* global React */ const marketingNavSite = window.RentLensSite; function Nav() { const { isMobile } = marketingNavSite.useViewport(); const links = [ ['How it works', '#how-it-works'], ['For investors', '#for-investors'], ['Services', '#services'], ['Pricing', '#pricing'], ]; if (isMobile) { return (
Propbee Analyze a property
); } return (
Propbee
Sign in Analyze a property
); } window.Nav = Nav;