bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/breakout-room/breakout-remaining-time/component.jsx
2020-02-21 15:06:05 -03:00

12 lines
187 B
JavaScript

import React from 'react';
const BreakoutRemainingTime = props => (
<span data-test="breakoutRemainingTime">
{props.children}
</span>
);
export default BreakoutRemainingTime;