import { Routes } from "@angular/router";
import { PhotosComponent } from "./photos.component";

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