Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
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.
 
 
 
 
 
 
jitsi-meet/react/features/conference/components/native/ConferenceTimerDisplay.js

22 lines
516 B

// @flow
import React from 'react';
import { Text } from 'react-native';
/**
* Returns native element to be rendered.
*
* @param {string} timerValue - String to display as time.
* @param {Object} textStyle - Style to be applied to the text.
*
* @returns {ReactElement}
*/
export default function renderConferenceTimer(timerValue: string, textStyle: Object) {
return (
<Text
numberOfLines = { 1 }
style = { textStyle }>
{ timerValue }
</Text>
);
}