選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

functions.web.js 265B

1234567891011
  1. // @flow
  2. /**
  3. * Returns the visibility state of the reactions menu.
  4. *
  5. * @param {Object} state - The state of the application.
  6. * @returns {boolean}
  7. */
  8. export function getReactionsMenuVisibility(state: Object) {
  9. return state['features/reactions'].visible;
  10. }