mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
21 lines
260 B
React
21 lines
260 B
React
|
|
||
|
|
||
|
import moment from 'moment'
|
||
|
|
||
|
import React from 'react'
|
||
|
|
||
|
|
||
|
export default class RelativeTime extends React.Component {
|
||
|
|
||
|
render() {
|
||
|
let time = moment.utc(this.props.value);
|
||
|
|
||
|
return (
|
||
|
<span>{time.fromNow(this.props.suffix)}</span>
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|