From 63775f04b988dd4f8503cec0c4658e22b8a96c8a Mon Sep 17 00:00:00 2001 From: Dicken Date: Mon, 25 May 2026 15:55:07 +0200 Subject: [PATCH] =?UTF-8?q?frontend/src/toolRegistry.js=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/toolRegistry.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 frontend/src/toolRegistry.js diff --git a/frontend/src/toolRegistry.js b/frontend/src/toolRegistry.js deleted file mode 100644 index f13029f..0000000 --- a/frontend/src/toolRegistry.js +++ /dev/null @@ -1,26 +0,0 @@ -import Kalkulator3D, { SavedList } from './tools/Kalkulator3D.jsx'; - -// ══════════════════════════════════════════════════════════════════════════════ -// Tool-Registry – hier neue Tools eintragen -// -// Neues Tool hinzufügen: -// 1. Backend: src/tools//routes.js anlegen → wird automatisch geladen -// 2. Frontend: src/tools/.jsx anlegen -// 3. Hier einen Eintrag ergänzen -// ══════════════════════════════════════════════════════════════════════════════ -export const TOOLS = [ - { - id: 'kalkulator3d', - icon: '◈', - label: '3D-Kalkulator', - component: Kalkulator3D, - }, - { - id: 'kalkulator3d-saved', - icon: '◉', - label: 'Gespeichert', - component: SavedList, - }, - // Nächstes Tool: - // { id: 'newtool', icon: '◇', label: 'Mein Tool', component: MeinTool }, -];