您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ConferenceTimerDisplay.js 433B

12345678910111213141516171819
  1. // @flow
  2. /* eslint-disable no-unused-vars */
  3. import React from 'react';
  4. /**
  5. * Returns web element to be rendered.
  6. *
  7. * @param {string} timerValue - String to display as time.
  8. * @param {Object} textStyle - Unused on web.
  9. *
  10. * @returns {ReactElement}
  11. */
  12. export default function renderConferenceTimer(timerValue: string, textStyle: Object) {
  13. return (
  14. <span className = 'subject-timer'>{ timerValue }</span>
  15. );
  16. }