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

ConferenceTimerDisplay.js 343B

12345678910111213141516
  1. // @flow
  2. import React from 'react';
  3. /**
  4. * Returns web element to be rendered.
  5. *
  6. * @param {string} timerValue - String to display as time.
  7. *
  8. * @returns {ReactElement}
  9. */
  10. export default function renderConferenceTimer(timerValue: string) {
  11. return (
  12. <span className = 'subject-conference-timer' >{ timerValue }</span>
  13. );
  14. }