Testing Hashnode...

I'm just trying out Hashnode as a publishing platform...

@customElement('my-blog')
export default class MyBlog extends LitElement {

  @property()
  domain: string;

  render() {
    return html`<my-header></my-header> <my-content></my-content>`;
  }
}