Guest User

Untitled

a guest
Feb 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. //Wrap the component in query so it updates count automatically
  2. const CounterWrapped = wp.data.query( select => {
  3. return {
  4. //In the counter, we registered the reducer "countingPlugin" and the selector "getCount"
  5. //Those provide the count to the component
  6. count: select( 'countingPlugin', 'getCount' ),
  7. };
  8. } )( Counter );
Add Comment
Please, Sign In to add comment