Files
POCloud-Live-Reports/app/components/Channel.js
2017-08-11 17:57:23 -05:00

16 lines
315 B
JavaScript

import React from 'react';
export class Channel extends React.Component {
render(){
const timestamp = new Date(this.props.timestamp * 1000);
return (
<tr>
<td>{this.props.name}</td>
<td>{this.props.value}</td>
<td>{timestamp.toLocaleString()}</td>
</tr>
);
}
}