Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active June 23, 2017 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/e99f9ed8a9389490bcce1afcf244a21d to your computer and use it in GitHub Desktop.
Save matthieu-D/e99f9ed8a9389490bcce1afcf244a21d to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { Options } from './options';
@NgModule({
declarations: [
Options,
],
imports: [
IonicPageModule.forChild(Options),
],
exports: [
Options
]
})
export class OptionsModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment