basic backend and frontend communication done

This commit is contained in:
2021-08-29 15:06:00 -04:00
parent b9ee7d0790
commit 542c6e32c8
11 changed files with 209 additions and 2658 deletions

View File

@@ -0,0 +1,22 @@
import React, {useState, useEffect, useContext, createContext} from 'react';
import APIContext from '../../App';
import { Modal, Button, Text, Group, TextInput, Loader } from '@mantine/core';
function App() {
const serverConfig = useContext(APIContext);
return (
<>
This page is the home page!
</>
);
}
export default App;