Update from Git Manager GUI

This commit is contained in:
2025-12-28 18:06:53 +01:00
parent 0154cb22eb
commit c510f52bdd
6 changed files with 915 additions and 0 deletions

7
renderer/index.js Normal file
View File

@@ -0,0 +1,7 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.jsx';
const container = document.getElementById('root');
const root = createRoot(container);
root.render(<App />);