reflex/reflex/components/react_player/__init__.py
Khaleel Al-Adhami a65fc2e90b
Add on progress typing to react player (#4211)
* add on progress typing to react player

* fix pyi file

* have the pyi here as well

* more pyi changes

* fix imports

* run pyi

* for some reason it want event on three lines no clue why

* simplify case for when type is in the same module

* run pyi

* remove last missing type for datadisplay
2024-10-22 13:09:14 -07:00

9 lines
171 B
Python

"""React Player component for audio and video."""
from . import react_player
from .audio import Audio
from .video import Video
audio = Audio.create
video = Video.create