/**
 * This is the base module file. Copy the file into your site folder
 * under modules/*module-name* to extend this module and its components
 */

import { NgModule }                     from '@angular/core'
import { SharedModule } from '@k-core/modules/shared/mod.shared'

import { UserProfileRouting } from './rte.userProfile'

// Components
import { PageComponent } from './components/page/cmp.page'
import { MenuComponent } from './components/menu/cmp.menu'
import { InfoComponent } from './components/info/cmp.info'
import { OrdersComponent } from './components/orders/cmp.orders'

// Views

// Services
import { UserProfileService } from './services/svc.userProfile'
// import { SafeHtmlPipe } from './services/pipe.safeHtml'
@NgModule({
    imports: [ 
        SharedModule,
        UserProfileRouting,

    ],
    exports: [
        // *Add your exports here*

    ],
    declarations: [
        // Components
        PageComponent,
        MenuComponent,
        InfoComponent,
        OrdersComponent,

        // Views
        // *Add your views here*

        // SafeHtmlPipe,
    ],
    providers: [
        // Services

        UserProfileService

    ]
})

export class UserProfileModule {}
