automerge/examples/cra/README.md
2022-02-22 10:21:42 -05:00

22 lines
623 B
Markdown

## Example CRA App using AutomergeWASM
### Creating this example app
```bash
$ cd automerge-wasm && yarn pkg # this builds the npm package
$ cd ../examples
$ npx create-react-app cra --template typescript
$ cd cra
$ npm install ../../automerge-wasm/automerge-wasm-v0.1.0.tgz
```
Then I just needed to add the import "automerge-wasm" and `{ useEffect, useState }` code to `./src/App.tsx`
```bash
$ npm start
```
### Open Issues
The example app currently doesn't do anything useful. Perhaps someone with some react experience and figure out the right way to wire everything up for an actual demo.