Files
ionic-framework/angular/test/test-app/src/app/popover-inline/popover-inline-routing.module.ts
Sean Perkins 5c54593dde fix(angular): attach change detector ref for inline overlays (#24521)
Allow template bindings to update with inline overlays.

Resolves #24502
2022-01-06 15:43:51 -05:00

15 lines
356 B
TypeScript

import { NgModule } from "@angular/core";
import { RouterModule } from "@angular/router";
import { PopoverInlineComponent } from "./popover-inline.component";
@NgModule({
imports: [RouterModule.forChild([
{
path: '',
component: PopoverInlineComponent
}
])],
exports: [RouterModule]
})
export class PopoverInlineRoutingModule { }