import { Component } from 'san'
class Label extends Component {
static template = '{{text}}'
}
export default class MyComponent extends Component {
static components = {
'ui-label': Label
}
static template = ''
attached () {
this.data.set('name', 'errorrik');
}
}