Skip to content

Instantly share code, notes, and snippets.

@odoe
Created May 7, 2019 16:43
Show Gist options
  • Select an option

  • Save odoe/b7740f99c4f19e7d512b9b329f7ec1c1 to your computer and use it in GitHub Desktop.

Select an option

Save odoe/b7740f99c4f19e7d512b9b329f7ec1c1 to your computer and use it in GitHub Desktop.
// src/widgets/Profile.ts
export interface ProfileProperties {
username?: string;
}
export default class Profile extends WidgetBase<ProfileProperties> {
protected render() {
const { username } = this.properties;
return v("h1", { classes: [css.root] }, [
`Welcome ${username || "Stranger"}!`
]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment