mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 12:49:19 +00:00
15 lines
188 B
JavaScript
15 lines
188 B
JavaScript
import Polymer from '../polymer';
|
|
|
|
export default new Polymer({
|
|
is: 'ha-card',
|
|
|
|
properties: {
|
|
title: {
|
|
type: String,
|
|
},
|
|
header: {
|
|
type: String,
|
|
},
|
|
},
|
|
});
|