mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
20 lines
330 B
TypeScript
20 lines
330 B
TypeScript
import { NgModule, ModuleWithProviders } from '@angular/core';
|
|
|
|
import { Content } from './content';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
Content
|
|
],
|
|
exports: [
|
|
Content
|
|
]
|
|
})
|
|
export class ContentModule {
|
|
public static forRoot(): ModuleWithProviders {
|
|
return {
|
|
ngModule: ContentModule, providers: []
|
|
};
|
|
}
|
|
}
|