15 lines
661 B
TypeScript
15 lines
661 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {HomeComponent} from "./home/home.component";
|
|
import {BeautifyComponent} from "./beautify/beautify.component";
|
|
import {UglifyComponent} from "./uglify/uglify.component";
|
|
import {Json2CsharpComponent} from "./json2csharp/json2-csharp.component";
|
|
import {JsonPathComponent} from "./json-path/json-path.component";
|
|
|
|
export const routes: Routes = [
|
|
{ path: 'home', component: HomeComponent },
|
|
{ path: 'beautify', component: BeautifyComponent },
|
|
{ path: 'uglify', component: UglifyComponent },
|
|
{ path: 'json2csharp', component: Json2CsharpComponent },
|
|
{ path: 'jsonpath', component: JsonPathComponent },
|
|
];
|