mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-12-07 10:39:29 +00:00
MikroWizard Initial commit | MikroFront Welcome to the world :)
This commit is contained in:
commit
b97aec6b97
203 changed files with 41097 additions and 0 deletions
21
src/app/views/devices_group/devgroup-routing.module.ts
Normal file
21
src/app/views/devices_group/devgroup-routing.module.ts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
|
||||
import { DevicesGroupComponent } from './devgroup.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: DevicesGroupComponent,
|
||||
data: {
|
||||
title: $localize`Device Group`
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class DevicesGroupRoutingModule {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue