Skip to content
Snippets Groups Projects
profile.routing.ts 185 B
Newer Older
Hugo BAYOUD's avatar
Hugo BAYOUD committed
import { Route } from "@angular/router";
import { ProfileComponent } from "./profile.component";

export const PROFILE_ROUTING: Route[] = [
	{ path: '', component: ProfileComponent }
];