Franck 8e62bf6b46
Bump ethers, @usedapp/core and waffle to working version
Trying to have one version of ethers across the board to avoid
type conflicts. As ethers 5.5 and 5.4 are not compatible.
2021-12-24 15:42:16 +11:00
..
2021-12-23 16:04:36 +11:00

This packages contains react components used to display waku polls

Components

-Poll

Components that displays poll as a card

type PollProps = {
  theme: Theme // see react-components theme
  poll: DetailedTimedPoll // see core DetailedTimedPoll
  wakuPolling: WakuPolling | undefined // see core
}

-PollCreation

Modal that creates now polls

type PollCreationProps = {
  theme: Theme
  wakuPolling: WakuPolling | undefined
  setShowPollCreation: (val: boolean) => void // function that shows or hides modal
}

-PollList

A component that shows a list of polls on waku network

type PollListProps = {
  theme: Theme
  wakuPolling: WakuPolling | undefined
  account: string | null | undefined
}