mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-27 23:23:07 +00:00
Add workflow-list, execution-history, and health-dashboard apps. Redesign operation-result with operation-aware headers, detail panels, and copy-to-clipboard. Fix React hooks violations in validation-summary and execution-history (useMemo after early returns). Add local preview harness for development. Update tests for 5-app config. Conceived by Romuald Członkowski - www.aiadvisors.pl/en Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import React from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import App from './App';
|
|
|
|
const root = document.getElementById('root');
|
|
if (root) {
|
|
createRoot(root).render(<App />);
|
|
}
|