Untitled

 avatar
unknown
plain_text
a year ago
267 B
3
Indexable
 return isLoading ? (
    <LoadingScreen />
  ) : isPaidUser ? (
    check && emailList.length > 0 ? (
      <form onSubmit={handleSubmit(onSubmit)}>
        <SurveyComponent />
      </form>
    ) : (
      <EmptyComponent />
    )
  ) : (
    <NoSubscription />
  )
Editor is loading...
Leave a Comment