initial implementation of sorting algorithms
This commit is contained in:
@@ -3,6 +3,7 @@ import {ProjectsComponent} from '../pages/projects/projects.component';
|
||||
import {ImprintComponent} from '../pages/imprint/imprint.component';
|
||||
import {AlgorithmsComponent} from '../pages/algorithms/algorithms.component';
|
||||
import {PathfindingComponent} from '../pages/algorithms/pathfinding/pathfinding.component';
|
||||
import {SortingComponent} from '../pages/algorithms/sorting/sorting.component';
|
||||
|
||||
export class RouterConstants {
|
||||
|
||||
@@ -30,6 +31,12 @@ export class RouterConstants {
|
||||
COMPONENT: PathfindingComponent
|
||||
};
|
||||
|
||||
static readonly SORTING = {
|
||||
PATH: 'algorithms/sorting',
|
||||
LINK: '/algorithms/sorting',
|
||||
COMPONENT: SortingComponent
|
||||
};
|
||||
|
||||
static readonly IMPRINT = {
|
||||
PATH: 'imprint',
|
||||
LINK: '/imprint',
|
||||
|
||||
Reference in New Issue
Block a user