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