1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 13:29:35 +02:00

Initial commit

This commit is contained in:
unknown 2021-05-06 19:03:31 +02:00
commit 573814ddac
25 changed files with 18830 additions and 0 deletions

11
client/src/index.tsx Normal file
View file

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