Skip to content

Commit

Permalink
Merge pull request Workiva#16 from denniskaselow/patch-1
Browse files Browse the repository at this point in the history
changed react_dom.render(FooComponent()() to react_dom.render(Foo()()
  • Loading branch information
aaronlademann-wf authored Oct 31, 2016
2 parents 45c1a63 + 6035606 commit 25235b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ mount / render it into the HTML element you created in step 3.
react_client.setClientConfiguration();
// Mount / render your component.
react_dom.render(FooComponent()(), querySelector('#react_mount_point'));
react_dom.render(Foo()(), querySelector('#react_mount_point'));
}
```

Expand Down

0 comments on commit 25235b0

Please sign in to comment.