Update comparison.md (#1248)

This commit is contained in:
Danilo Britto 2022-09-01 17:44:04 -05:00 committed by GitHub
parent bf5d4be360
commit e85673f6e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,7 +281,7 @@ There are two major differences between Zustand and Jotai. The first one is
Zustand is a single store, while Jotai consists of primitive atoms and allows
composing them together. The last one is Zustand store is global in memory, but
Jotai atoms are not (are definitions that do not hold values) and that's why
you can use it outside React.
you can not use it outside React.
```ts
import create from 'zustand'