interpreter works!
2 | -------------------------------------------------------------------------------- /src/app/23. Interpreter/interpreter/interpreter.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Itchimonji/design-patterns-in-angular/61fdc88dfad268d411ed31906630311470677703/src/app/23. Interpreter/interpreter/interpreter.component.scss -------------------------------------------------------------------------------- /src/app/23. Interpreter/interpreter/interpreter.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-interpreter', 5 | templateUrl: './interpreter.component.html', 6 | styleUrls: ['./interpreter.component.scss'] 7 | }) 8 | export class InterpreterComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- 1 |