選択できるのは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. }