mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
26 lines
406 B
TypeScript
26 lines
406 B
TypeScript
import { NgModule, ModuleWithProviders } from '@angular/core';
|
|
|
|
import { Grid } from './grid';
|
|
import { Row } from './row';
|
|
import { Col } from './col';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
Grid,
|
|
Row,
|
|
Col
|
|
],
|
|
exports: [
|
|
Grid,
|
|
Row,
|
|
Col
|
|
]
|
|
})
|
|
export class GridModule {
|
|
public static forRoot(): ModuleWithProviders {
|
|
return {
|
|
ngModule: GridModule, providers: []
|
|
};
|
|
}
|
|
}
|