Skip to content
Snippets Groups Projects
photos.routing.ts 179 B
import { Routes } from "@angular/router";
import { PhotosComponent } from "./photos.component";

export const PHOTOS_ROUTES: Routes = [
	{ path: '', component: PhotosComponent }
]