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.
1 parent a8415c7 commit f09aaf6Copy full SHA for f09aaf6
src/app/components/StateRoute.tsx
@@ -91,7 +91,7 @@ const StateRoute = (props: StateRouteProps) => {
91
<Example
92
width={width}
93
height={height}
94
- snapshots = {snapshots} />}
+ snapshots={snapshots} />}
95
</ParentSize>
96
97
// atomsComponents={snapshot.atomsComponents}
@@ -113,7 +113,11 @@ const StateRoute = (props: StateRouteProps) => {
113
if (hierarchy) {
114
return (
115
<ParentSize>{({ width, height }) =>
116
- <PerformanceVisx width={width} height={height} />}
+ <PerformanceVisx
117
+ width={width}
118
+ height={height}
119
+ snapshots={snapshots}
120
+ />}
121
122
123
// <PerfView
0 commit comments