- Prisma
- TypeSafe ORM for Node.js
- tRPC
- Typesafe REST, GraphQL alternative for TypeScript monorepos
- create-t3-app
- A starter pack of Next.js, Prisma.io, and tRPC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useContext, useRef, useMemo } from "react"; | |
import { | |
ApolloClient, | |
ApolloProvider, | |
HttpLink, | |
InMemoryCache | |
} from "@apollo/client"; | |
import { setContext } from "apollo-link-context"; | |
import { BrowserRouter as Router } from "react-router-dom"; | |
import AppContext from "./AppContext"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useRef, useState } from "react"; | |
import { | |
Box, | |
Button, | |
Center, | |
Flex, | |
Grid, | |
GridItem, | |
IconButton, | |
Input, |
OlderNewer