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