@teikei/map
Version:
Teikei map SPA component. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.
19 lines (15 loc) • 333 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import timeago from 'timeago'
const Footer = props => (
<footer>
Letzte Aktualisierung:
{timeago(props.feature.updatedAt)}
</footer>
)
Footer.propTypes = {
feature: PropTypes.shape({
updatedAt: PropTypes.string
}).isRequired
}
export default Footer