You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }