This repository contains a playground for testing out ReasonRelay. It focuses on exploring suspense, concurrent mode and a few other new Relay features like partial rendering of views.
You're encourage to do the following to get the best possible experience of trying this repo out:
- Install the ReasonRelay VSCode extension
- Open the
client
folder in VSCode, not the root (where this README file is located). This ensures the tooling works as expected.
Install the needed packages both for the client and the backend:
cd client
yarn
cd ../server
yarn
Start the server:
# in the server folder
yarn start
Start the client in a separate terminal:
# in the client folder
yarn start
Go to https://localhost:9000 to see the app.