// NG Imports
import { NgModule }             from '@angular/core'
import { RouterModule, Routes } from '@angular/router'


// Settings
import { AppHelper }            from '@k-settings/app-helper'


// Components


// Pages
import { ConfiguratorPartial_Suntex }  from './partial/cmp.configurator-partial'


const routes: Routes = [
    {
        path: '',
        component: ConfiguratorPartial_Suntex,
        children: [

            // This is a WILDCARD CATCH-ALL route that is scoped to the "/app/a"
            // route prefix. It will only catch non-matching routes that live
            // within this portion of the router tree.
            {
                path: "**",
                component: ConfiguratorPartial_Suntex
            }
        ]
    }
];

@NgModule({
    imports: [
        RouterModule.forChild(routes)
    ],
    exports: [
        RouterModule
    ]
})
export class ConfiguratorRouting { }

