Skip to content

Commit 5513ee1

Browse files
author
brucou
committed
chore(README)
1 parent a68667c commit 5513ee1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- [Further examples](#further-examples)
1212
* [Controlled form](#controlled-form)
1313
* [Uncontrolled form with ref](#uncontrolled-form-with-ref)
14+
- [Testing](#testing)
1415

1516
# Motivation
1617
User interfaces are reactive systems which can be modelized accurately by state machines. There
@@ -109,7 +110,7 @@ suitable implementation
109110

110111
As a result of these design goals :
111112
- we do not use React context, portal, fragments, `jsx`, and use the minimum React lifecycle hooks
112-
- the component user can of course the whole extent of the API at disposal, those restrictions
113+
- the component user can of course use the whole extent of the API at disposal, those restrictions
113114
only concern our implementation of the `<Machine /` component.
114115
- we defined interfaces for extended state updates (reducer interface), event processing
115116
(observer and observable interfaces).
@@ -603,3 +604,10 @@ const machines = {
603604
}
604605
}
605606
```
607+
608+
# Testing
609+
Coming soon!
610+
611+
# Prior art
612+
- [React automata](https://github.com/MicheleBertoli/react-automata)
613+

0 commit comments

Comments
 (0)