waw-dev
Version:
[waw](https://webart.work) is the open-source web, mobile and desktop app development framework that makes it easy to build top quality web apps with web technologies.
24 lines (19 loc) • 446 B
text/typescript
import { NgModule } from '@angular/core';
import { CommonModule } from '@common';
import { CNAMEComponent } from './NAME.component';
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [{
path: '',
component: CNAMEComponent
}];
export class CNAMEModule { }