Log route parameters in the scene-tracker (#38654)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/38654

Changelog:
[Internal][Added] - Created mechanism to add other properties in OCSceneTracker then subsequently refine them when consuming the current scene.

Reviewed By: rubennorte

Differential Revision: D47810741

fbshipit-source-id: d24e4f4d1d25fac2f3bed2e98e7a7b4642f26319
This commit is contained in:
Jesse Watts-Russell
2023-07-27 20:56:11 -07:00
committed by Facebook GitHub Bot
parent 83c512dd2c
commit 6dc517a7fc
+1 -1
View File
@@ -10,7 +10,7 @@
'use strict';
export type Scene = {name: string, ...};
export type Scene = {name: string, [string]: mixed, ...};
let _listeners: Array<(scene: Scene) => void> = [];