mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-20 02:38:53 +00:00
18 lines
279 B
JavaScript
18 lines
279 B
JavaScript
import Polymer from '../polymer';
|
|
|
|
import formatTime from '../util/format-time';
|
|
|
|
export default new Polymer({
|
|
is: 'display-time',
|
|
|
|
properties: {
|
|
dateObj: {
|
|
type: Object,
|
|
},
|
|
},
|
|
|
|
computeTime(dateObj) {
|
|
return dateObj ? formatTime(dateObj) : '';
|
|
},
|
|
});
|