sync for backup
This commit is contained in:
parent
1fbdf7fc9d
commit
a9916acea5
92 changed files with 35330 additions and 882 deletions
0
frontend-src/app/components/.gitkeep
Normal file
0
frontend-src/app/components/.gitkeep
Normal file
1
frontend-src/app/components/note.hbs
Normal file
1
frontend-src/app/components/note.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
{{yield}}
|
14
frontend-src/app/components/note.ts
Normal file
14
frontend-src/app/components/note.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
import Component from '@glimmer/component';
|
||||
|
||||
export interface NoteSignature {
|
||||
// The arguments accepted by the component
|
||||
Args: {};
|
||||
// Any blocks yielded by the component
|
||||
Blocks: {
|
||||
default: [];
|
||||
};
|
||||
// The element to which `...attributes` is applied in the component template
|
||||
Element: null;
|
||||
}
|
||||
|
||||
export default class NoteComponent extends Component<NoteSignature> {}
|
Loading…
Add table
Add a link
Reference in a new issue