We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf957fd + bcc6e38 commit 8d01322Copy full SHA for 8d01322
code/constructors/octane.js
@@ -1,8 +1,8 @@
1
import Component from '@glimmer/component';
2
3
export default class SomeComponent extends Component {
4
- constructor() {
5
- super(...arguments);
+ constructor(owner, args) {
+ super(owner, args);
6
this.answer = 42;
7
}
8
0 commit comments