This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/styleguide/assets/javascripts/discourse/components/styleguide-example.js

13 lines
240 B
JavaScript

import Component from "@ember/component";
export default Component.extend({
tagName: "section",
classNames: ["styleguide-example"],
value: null,
init() {
this._super(...arguments);
this.value = this.initialValue;
},
});