@react-mock/state
v0.1.8
Published
Inject React component state declaratively
Downloads
6,038
Readme
Component state
Inject React component state declaratively.
StateMock
must be the direct parent of the stateful component for the state injection to work.
import { StateMock } from '@react-mock/state';
render(
<StateMock state={{ count: 5 }}>
<Counter />
</StateMock>
);
Warning: StateMock delays ref calls. This means refs can get called after componentDidMount, instead of before as you might expect.