We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb09801 + 1f54047 commit 7bce3c3Copy full SHA for 7bce3c3
readme.md
@@ -12,15 +12,15 @@ Two parts are needed for this tool to function. The chrome extension must be ins
12
```
13
npm i react-time-travel
14
15
-3. Call the `linkFiber` method on your root container after rendering your App.
+3. Call the library method on your root container after rendering your App.
16
17
18
-const { linkFiber } = require('react-time-travel');
+const reactTimeTravel = require('react-time-travel');
19
20
const rootContainer = document.getElementById('root');
21
ReactDom.render(<App />, rootContainer);
22
23
-linkFiber(rootContainer);
+reactTimeTravel(rootContainer);
24
25
26
4. Done! That's all you have to do to link your React project to our library.
0 commit comments