Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit 70b9353

Browse files
authored
docs: replace Shopify internal lib to avoid misunderstanding (#163)
* docs: remove Shopify internal lib to avoid misunderstanding * Update getting-started.md
1 parent acb9e58 commit 70b9353

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/docs/fundamentals/getting-started.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ import {RenderPassReport, PerformanceProfiler} from '@shopify/react-native-perfo
6868
6969
const App = () => {
7070
const onReportPrepared = useCallback((report: RenderPassReport) => {
71-
monorail.produce(convertReportToMonorailObject(report));
71+
// The console shown above is exclusively used for testing purposes.
72+
// It has been designed to be flexible and can be replaced with any analytics library of your choice.
73+
console.log(JSON.stringify(report, null, 2))
7274
}, []);
7375
7476
return (

0 commit comments

Comments
 (0)