Replies: 1 comment
-
I can't do here anything from konva side. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
import React from 'react';
import { Spring, animated } from '@react-spring/konva';
export const Home = () => {
return (
<Spring
from={{ x: 0 }}
to={{
x: 150,
}}
>
{props => <animated.Rect />}
);
};
animated.Rect => Type instantiation is excessively deep and possibly infinite.
Why @react-spring/konva + react-konva + typescript = ERROR :)
Beta Was this translation helpful? Give feedback.
All reactions