0.1.8 • Published 5 years ago

@react-mock/state v0.1.8

Weekly downloads
10,482
License
MIT
Repository
github
Last release
5 years ago

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.