- Implementar ion-chips para categorías y keywords en hero page - Agregar bypass de pago en hire page para pruebas - Mover progress bar en dashboard - Corregir shared-components module (remover AccordionComponent eliminado) - Corregir eventos Ionic (ionInput/ionChange) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
278 B
TypeScript
Executable File
14 lines
278 B
TypeScript
Executable File
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
@NgModule({
|
|
declarations: [],
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule
|
|
],
|
|
exports: []
|
|
})
|
|
export class SharedComponentsModule { }
|