Skip to content

v0.9.0

Choose a tag to compare

@charkour charkour released this 29 Jun 18:09

What's Changed

  const reactions: Reaction[] = React.useMemo(
      () => [
        {
          key: 'woozy',
          label: i18n.translate('woozy', i18n.language)
          node: <div>🥴</div>,
        },
        {
          key: 'happy',
          label: i18n.translate('happy', i18n.language)
          node: <div>🙂</div>,
        },
        {
          key: 'exploding-head',
          label: i18n.translate('exploding-head', i18n.language)
          node: <div>🤯</div>,
        },
      ],
      [i18n.language]
   )

New Contributors

Full Changelog: v0.8.0...v0.9.0