mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
15 lines
356 B
TypeScript
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 { }
|