Files
actions-playground/src/main.jsx
T
tom.coursow 14d6d17207
Gitea Actions Demo / Test-Job (push) Successful in 8s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 20s
added example react js app to play with gitea actions
2023-07-12 00:12:24 +02:00

12 lines
236 B
React

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>
);