Files
hikari/client/src/app/app.routes.ts
2025-07-04 15:50:56 -07:00

15 lines
338 B
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Routes } from "@angular/router";
import { Home } from "./home/home.js";
import { Soon } from "./soon/soon.js";
export const routes: Routes = [
{ component: Home, path: "", pathMatch: "full" },
{ component: Soon, path: "**" },
];