bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/breakout-room/breakout-remaining-time/component.jsx

12 lines
187 B
React
Raw Normal View History

2018-10-24 01:18:09 +08:00
import React from 'react';
const BreakoutRemainingTime = props => (
2020-02-22 02:06:05 +08:00
<span data-test="breakoutRemainingTime">
2018-10-24 01:18:09 +08:00
{props.children}
</span>
);
export default BreakoutRemainingTime;