generated from nhcarrigan/template
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 18s
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import { Routes } from "@angular/router";
|
|
import { Home } from "./home/home.js";
|
|
|
|
export const routes: Routes = [
|
|
{ component: Home, path: "", pathMatch: "full" },
|
|
];
|