mirror of
https://github.com/Polaris-Entertainment/bytefy.git
synced 2026-07-08 16:45:09 +00:00
Add color picker
This commit is contained in:
@@ -7,6 +7,7 @@ import { TextToCronComponent } from '../tools/client-side/text-to-cron/text-to-c
|
||||
import { DdsToPngComponent } from '../tools/client-side/dds-to-png/dds-to-png.component';
|
||||
import { ImageConverterComponent } from '../tools/server-side/image-converter/image-converter.component';
|
||||
import { WordCounterComponent } from '../tools/client-side/word-counter/word-counter.component';
|
||||
import { ColorPickerComponent } from '../tools/client-side/color-picker/color-picker/color-picker.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
@@ -48,6 +49,11 @@ export const routes: Routes = [
|
||||
path: 'text-counter',
|
||||
pathMatch: 'full',
|
||||
component: WordCounterComponent
|
||||
},
|
||||
{
|
||||
path: 'color-picker',
|
||||
pathMatch: 'full',
|
||||
component: ColorPickerComponent
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
@@ -53,6 +53,11 @@ export class HeaderComponent implements OnInit {
|
||||
label: 'Text to Cron Expression',
|
||||
routerLink: 'text-to-cron',
|
||||
routerLinkActiveOptions: { exact: true }
|
||||
},
|
||||
{
|
||||
label: 'Color picker',
|
||||
routerLink: 'color-picker',
|
||||
routerLinkActiveOptions: { exact: true }
|
||||
}
|
||||
],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user