Added some digi-core components and removed some old/unused css

This commit is contained in:
Erik Tiekstra
2021-03-23 15:47:53 +01:00
committed by Erik Tiekstra
parent 507a61a2ef
commit f7537671f3
49 changed files with 106 additions and 561 deletions

View File

@@ -1,9 +1,10 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { ParticipantsComponent } from './participants.component';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [ParticipantsComponent],
imports: [CommonModule, RouterModule.forChild([{ path: '', component: ParticipantsComponent }])],
})