Skip to content

Instantly share code, notes, and snippets.

@UpperCod
Created October 4, 2018 17:27
Show Gist options
  • Save UpperCod/18e1a69c269c1bef8667ff5c24f28755 to your computer and use it in GitHub Desktop.
Save UpperCod/18e1a69c269c1bef8667ff5c24f28755 to your computer and use it in GitHub Desktop.
Sample import atomico
import { h, Element } from "atomico";
customElements.define(
"atom-hello",
class extends Element {
static get props() {
return ["text"];
}
render() {
return <h1>hello {this.props.text}</h1>;
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment