mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 04:22:09 +00:00
* Add test to frameworks * Add example for Docusaurus v2 * Add example for ionic-angular * Update READMEs * Use existing versions * Reset yarn.lock * Add schema validation and add missing Scully.io logo
22 lines
590 B
TypeScript
22 lines
590 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { AboutPage } from './about';
|
|
import { PopoverPage } from '../about-popover/about-popover';
|
|
import { AboutPageRoutingModule } from './about-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
AboutPageRoutingModule
|
|
],
|
|
declarations: [AboutPage, PopoverPage],
|
|
entryComponents: [PopoverPage],
|
|
bootstrap: [AboutPage],
|
|
})
|
|
export class AboutModule {}
|