/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/test/base/src/app/lazy/popover-inline/popover-inline.module.ts
11 строк
446 B
Liam DeBeasi
feat(angular): ship Ionic components as Angular standalone components (#28311)
10 окт 2023, 20:06
Не верифицирован
10 окт 2023, 20:06
57e2476
Код
Авторство
О чём код?
import { CommonModule } from "@angular/common"; import { NgModule } from "@angular/core"; import { IonicModule } from "@ionic/angular"; import { PopoverInlineRoutingModule } from "./popover-inline-routing.module"; import { PopoverInlineComponent } from "./popover-inline.component"; @NgModule({ imports: [CommonModule, IonicModule, PopoverInlineRoutingModule], declarations: [PopoverInlineComponent], }) export class PopoverInlineModule { }