Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ConferenceTimerDisplay.js 445B

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-conference-timer' >{ timerValue }</span>
  15. );
  16. }