mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
29 lines
917 B
TypeScript
29 lines
917 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { HeaderPage } from '../shared/header/header.page';
|
||
|
|
import { BtnSeguintePage } from '../shared/btn-seguinte/btn-seguinte.page';
|
||
|
|
import { BtnModalDismissPage } from '../shared/btn-modal-dismiss/btn-modal-dismiss.page';
|
||
|
|
import { EmptyChatPage } from '../shared/chat/empty-chat/empty-chat.page';
|
||
|
|
import { BtnCriarPage } from '../shared/buttons/btn-criar/btn-criar.page';
|
||
|
|
import { BtnAdicionarPage } from '../shared/buttons/btn-adicionar/btn-adicionar.page';
|
||
|
|
import { HeaderNoSearchPage } from '../shared/headers/header-no-search/header-no-search.page';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
declarations: [],
|
||
|
|
exports: [
|
||
|
|
HeaderPage,
|
||
|
|
HeaderNoSearchPage,
|
||
|
|
BtnSeguintePage,
|
||
|
|
BtnModalDismissPage,
|
||
|
|
EmptyChatPage,
|
||
|
|
BtnCriarPage,
|
||
|
|
BtnAdicionarPage,
|
||
|
|
],
|
||
|
|
imports: [
|
||
|
|
CommonModule
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export class ComponentsModule { }
|