Skip to content

Commit f0ba174

Browse files
author
Salma Alam-Naylor
committed
Clean up fretonator file
1 parent 461bcea commit f0ba174

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
1-
import { Component, Input, OnInit } from '@angular/core';
1+
import { Component, Input } from '@angular/core';
22
import { ChordMap, FretMap, Mode, Scale } from '../../util/types';
33

44
@Component({
55
selector: 'app-fretonator',
66
templateUrl: './fretonator.component.html',
77
styleUrls: ['./fretonator.component.scss'],
88
})
9-
export class FretonatorComponent implements OnInit {
9+
export class FretonatorComponent {
1010
@Input() fretMap: FretMap;
1111
@Input() scale: Scale;
1212
@Input() intervalMap: [];
1313
@Input() chordMap: ChordMap;
1414
@Input() mode: Mode;
1515
frets = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];
16-
17-
constructor() {}
18-
19-
ngOnInit(): void {}
2016
}

0 commit comments

Comments
 (0)