├── src
├── main.jsx
├── FullPageLoader.jsx
├── App.css
├── index.css
├── assets
│ └── react.svg
├── columns.jsx
├── App.jsx
└── mysvg.jsx
├── index.html
├── .gitignore
├── vite.config.js
├── package.json
├── templates
└── latex_template.tex
├── README.md
├── requirements.txt
├── public
└── vite.svg
├── agents2.py
├── agents4.py
├── agents3.py
├── agents.py
├── server.py
└── LICENSE
/src/main.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom/client'
3 | import App from './App.jsx'
4 | import './index.css'
5 |
6 | ReactDOM.createRoot(document.getElementById('root')).render(
7 |