How do I integrate an animation from Spline to Reflex? #5310
Unanswered
mprathip98
asked this question in
Q&A
Replies: 1 comment
-
import reflex as rx
class Spline(rx.Component):
library = "@splinetool/react-spline"
lib_dependencies: list[str] = ["@splinetool/[email protected]"]
tag = "Spline"
is_default = True
scene: rx.Var[str]
spline = Spline.create
scene = "https://prod.spline.design/1eapv4LnOygEqB66/scene.splinecode"
def spline_demo():
return spline(scene=scene) |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I created an animation on Spline, but I have no clue how to integrate it into Reflex. I tried using the Reflex documentation, but it resulted in errors and was not that helpful. Can someone let me know what I can do?
Beta Was this translation helpful? Give feedback.
All reactions