jiti-meet/react/features/conference/components/web/ConferenceTimerDisplay.js

20 lines
433 B
JavaScript
Raw Normal View History

2020-01-13 17:12:25 +00:00
// @flow
/* 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.
* @param {Object} textStyle - Unused on web.
2020-01-13 17:12:25 +00:00
*
* @returns {ReactElement}
*/
export default function renderConferenceTimer(timerValue: string, textStyle: Object) {
2020-01-13 17:12:25 +00:00
return (
<span className = 'subject-timer'>{ timerValue }</span>
2020-01-13 17:12:25 +00:00
);
}