mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
11 lines
337 B
TypeScript
11 lines
337 B
TypeScript
import { RouterModule, Routes } from "@angular/router";
|
|
import { HomeComponent } from "./home/home.component";
|
|
import { RiotComponent } from "./riot/riot.component";
|
|
|
|
const routes: Routes = [
|
|
{path: "", component: HomeComponent},
|
|
{path: "riot", component: RiotComponent},
|
|
];
|
|
|
|
export const routing = RouterModule.forRoot(routes);
|