2020-01-13 17:12:25 +00:00
|
|
|
// @flow
|
|
|
|
|
2021-03-18 13:05:08 +00:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
2020-01-13 17:12:25 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns web element to be rendered.
|
|
|
|
*
|
|
|
|
* @param {string} timerValue - String to display as time.
|
2021-03-18 13:05:08 +00:00
|
|
|
* @param {Object} textStyle - Unused on web.
|
2020-01-13 17:12:25 +00:00
|
|
|
*
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
2021-03-18 13:05:08 +00:00
|
|
|
export default function renderConferenceTimer(timerValue: string, textStyle: Object) {
|
2020-01-13 17:12:25 +00:00
|
|
|
return (
|
2021-04-08 08:35:26 +00:00
|
|
|
<span className = 'subject-timer'>{ timerValue }</span>
|
2020-01-13 17:12:25 +00:00
|
|
|
);
|
|
|
|
}
|