react-jplayer
Version:
Html5 audio and video player library for React
17 lines (12 loc) • 342 B
JSX
import React from 'react';
import PropTypes from 'prop-types';
import { classes } from '../../util/constants';
const CurrentTime = ({ currentTimeText }) => (
<div className={classes.CURRENT_TIME}>
{currentTimeText}
</div>
);
CurrentTime.propTypes = {
currentTimeText: PropTypes.string.isRequired,
};
export default CurrentTime;