mirror of
https://github.com/discourse/discourse.git
synced 2025-05-26 12:05:25 +08:00
12 lines
265 B
Plaintext
12 lines
265 B
Plaintext
import Component from "@glimmer/component";
|
|
import { tracked } from "@glimmer/tracking";
|
|
|
|
export default class StyleguideExample extends Component {
|
|
@tracked value = null;
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.value = this.args.initialValue;
|
|
}
|
|
}
|