8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import {Component} from "@angular/core";
|
|
|
|
@Component({
|
|
selector: 'notes',
|
|
templateUrl: './notes.component.html'
|
|
})
|
|
export class NotesComponent { }
|