diff --git a/firebird-ng/src/app/app.routes.ts b/firebird-ng/src/app/app.routes.ts index ea4aab0..ea5eaf7 100644 --- a/firebird-ng/src/app/app.routes.ts +++ b/firebird-ng/src/app/app.routes.ts @@ -14,4 +14,8 @@ export const routes: Routes = [ path: 'display', loadComponent: () => import('./main-display/main-display.component').then(m => m.MainDisplayComponent) }, + { + path: 'playground', + loadComponent: () => import('./playground/playground.component').then(m => m.PlaygroundComponent) + }, ]; diff --git a/firebird-ng/src/app/playground/playground.component.html b/firebird-ng/src/app/playground/playground.component.html new file mode 100644 index 0000000..10dd7a2 --- /dev/null +++ b/firebird-ng/src/app/playground/playground.component.html @@ -0,0 +1 @@ +

playground works!

diff --git a/firebird-ng/src/app/playground/playground.component.scss b/firebird-ng/src/app/playground/playground.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/firebird-ng/src/app/playground/playground.component.spec.ts b/firebird-ng/src/app/playground/playground.component.spec.ts new file mode 100644 index 0000000..6153e10 --- /dev/null +++ b/firebird-ng/src/app/playground/playground.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { PlaygroundComponent } from './playground.component'; + +describe('PlaygroundComponent', () => { + let component: PlaygroundComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [PlaygroundComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(PlaygroundComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/firebird-ng/src/app/playground/playground.component.ts b/firebird-ng/src/app/playground/playground.component.ts new file mode 100644 index 0000000..0ab101d --- /dev/null +++ b/firebird-ng/src/app/playground/playground.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-playground', + standalone: true, + imports: [], + templateUrl: './playground.component.html', + styleUrl: './playground.component.scss' +}) +export class PlaygroundComponent { + +}