Skip to content

Instantly share code, notes, and snippets.

@leetheguy
Last active May 31, 2019 20:16
Show Gist options
  • Save leetheguy/956d48712981740fa4bbd7c2b968a8fc to your computer and use it in GitHub Desktop.
Save leetheguy/956d48712981740fa4bbd7c2b968a8fc to your computer and use it in GitHub Desktop.
import { Component } from '@stencil/core';
@Component({
tag: 'analog-clock',
})
export class AnalogClock {
render() {
return [
<div>
<clock-face/>
</div>
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment