initial commit

This commit is contained in:
2021-07-26 14:54:22 +02:00
commit 2aea95c6ab
23 changed files with 65078 additions and 0 deletions

19
src/index.tsx Normal file
View File

@@ -0,0 +1,19 @@
import React from "react"
import ReactDOM from "react-dom"
import "./index.scss"
import App from "./App"
import { ApolloClient, ApolloProvider, InMemoryCache } from "@apollo/client"
const client = new ApolloClient({
uri: "http://localhost:8080/graphql",
cache: new InMemoryCache()
})
ReactDOM.render(
<React.StrictMode>
<ApolloProvider client={client}>
<App />
</ApolloProvider>
</React.StrictMode>,
document.getElementById("root")
)