setup gh-pages

This commit is contained in:
Simon Prince
2024-04-03 11:38:24 -04:00
commit d81bef8a6e
39 changed files with 33112 additions and 0 deletions

11
src/index.js Executable file
View File

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