import Page from 'components/page'
import { useUserContext } from 'contexts'

function Invite() {
  const { user } = useUserContext()

  return (
    <Page>
      <p>
        {user.first_name} {user.last_name}
        TODO: Put information about login options, and buttons to them on this
        page
      </p>
    </Page>
  )
}

export default Invite