Main logic + prettier graphing, no graph solver yet

This commit is contained in:
2024-05-01 20:20:39 +03:00
parent f02375948d
commit 9580da34cc
29 changed files with 19747 additions and 169 deletions

12
winx-serve/src/index.js Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);