function Billing({ go, user, plan, onCancel }) { const wide = useWide(); const [tab, setTab] = React.useState('overview'); const [confirm, setConfirm] = React.useState(false); const price = plan === 'yearly' ? 800 : 99; return (