Skip to content

Commit

Permalink
Remove args from code example
Browse files Browse the repository at this point in the history
  • Loading branch information
elwayman02 authored Jan 8, 2025
1 parent 7b3e39e commit 2e1f8ae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions docs/ember/component-signatures.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,7 @@ import Component from '@glimmer/component';
export interface SimpleHelloSignature {
// We have a `<div>` as our root element
Element: HTMLDivElement;
// We accept no arguments
Args: Record<string, never>;
// We do not accept block form, so don't specify it in the signature
// We accept no arguments or block form, so don't specify them in the signature
}

export default class SimpleHello extends Component<SimpleHelloSignature> {}
Expand Down

0 comments on commit 2e1f8ae

Please sign in to comment.