chore(): move demos/angular to angular/test

This commit is contained in:
Adam Bradley
2018-03-21 14:05:02 -05:00
parent 99610f7f08
commit 3829886a74
133 changed files with 0 additions and 4 deletions

View File

@ -0,0 +1,15 @@
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AlertPageComponent } from './alert-page.component';
import { AlertRoutingModule } from './alert-routing.module';
@NgModule({
imports: [
CommonModule,
AlertRoutingModule
],
declarations: [AlertPageComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class AlertModule { }