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.
12345678910111213141516 |
- // @flow
-
- import React from 'react';
-
- /**
- * Returns web element to be rendered.
- *
- * @param {string} timerValue - String to display as time.
- *
- * @returns {ReactElement}
- */
- export default function renderConferenceTimer(timerValue: string) {
- return (
- <span className = 'subject-conference-timer' >{ timerValue }</span>
- );
- }
|