delete useless icon-declaration for sidebar

This commit is contained in:
Tobias Gabelunke 2020-07-09 10:35:49 +02:00
parent bc9d0b39fd
commit f02f4e7f66

View File

@ -3,38 +3,32 @@ import { Component } from '@angular/core';
declare interface RouteInfo {
path: string;
title: string;
icon: string;
class: string;
}
export const ROUTES: RouteInfo[] = [
{
path: "/dashboard",
title: "Dashboard",
icon: "icon-chart-pie-36",
class: ""
},
{
path: "/backlog",
title: "Backlog",
icon: "icon-atom",
class: ""
},
{
path: "/userstories",
title: "Userstories",
icon: "icon-pin",
class: ""
},
{
path: "/tasks",
title: "Tasks",
icon: "icon-bell-55",
class: ""
},
{
path: "/sprints",
title: "Sprints",
icon: "icon-single-02",
class: ""
}
];