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 e6bf22f commit 3899f5aCopy full SHA for 3899f5a
src/app/components/StateRoute.tsx
@@ -81,13 +81,14 @@ const StateRoute = (props: StateRouteProps) => {
81
//* we wrap History in a ParentSize div, in order to make use of Visx's Zoom functionality
82
const renderHistory = () => {
83
if (hierarchy) {
84
+ // console.log(`width is ${width} and height is ${height}`);
85
return (
86
<div>
87
<ParentSize>
88
{({ width, height }) => (
89
<History
- width={width}
90
- height={height}
+ width={535}
91
+ height={481}
92
hierarchy={hierarchy}
93
dispatch={dispatch}
94
sliderIndex={sliderIndex}
0 commit comments