feat: search field

This commit is contained in:
2024-07-05 00:06:48 +03:00
parent 16a6a05d89
commit 6ddb3bad29
7 changed files with 55 additions and 13 deletions

View File

@@ -1,4 +1,9 @@
import { Route } from "@angular/router";
import { HomeComponent } from "./components/home/home.component";
export const appRoutes: Route[] = [{ path: "", component: HomeComponent }];
export const appRoutes: Route[] = [
{
path: "",
component: HomeComponent,
},
];