Dev-Tools: neues Tool mit YAML Formatter, Skizze BETA label

This commit is contained in:
2026-05-29 19:13:04 +02:00
parent 0d6b131cd0
commit b065c5350a
3 changed files with 324 additions and 3 deletions

View File

@@ -5,7 +5,8 @@ import Nachrichten from './tools/nachrichten.jsx';
import Linkliste from './tools/linkliste.jsx';
import CodeSchnipsel from './tools/codeschnipsel.jsx';
import Skizze from './tools/skizze.jsx';
import { CalculatorIcon, ArchiveIcon, DatabaseIcon, AppsIcon, MessageIcon, LinkIcon, CodeIcon, SkizzeIcon } from './icons.jsx';
import DevTools from './tools/devtools.jsx';
import { CalculatorIcon, ArchiveIcon, DatabaseIcon, AppsIcon, MessageIcon, LinkIcon, CodeIcon, SkizzeIcon, WrenchIcon } from './icons.jsx';
export const TOOLS = [
{
@@ -67,11 +68,19 @@ export const TOOLS = [
{
id: 'skizze',
Icon: SkizzeIcon,
label: 'Skizzen-Rechner',
navLabel: 'Skizze',
label: 'Skizzen-Rechner (β)',
navLabel: 'Skizze β',
group: 'Werkzeuge',
component: Skizze,
},
{
id: 'devtools',
Icon: WrenchIcon,
label: 'Dev-Tools',
navLabel: 'Dev-Tools',
group: 'Werkzeuge',
component: DevTools,
},
// Neues Tool: { id:'...', Icon:..., label:'...', navLabel:'...', group:'...', component:... },
];