Initial project upload to test support for custom gitea composite actions

This commit is contained in:
2023-07-27 14:09:07 +02:00
parent d7b1e90025
commit c5d240ffad
20 changed files with 8682 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
);