1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! # dioxuscut-player //! //! Interactive `<Player>` component — renders a composition with playback //! controls (play/pause/seek/scrub). //! //! Equivalent to the `@remotion/player` package. pub mod controls; pub mod native_preview; pub mod player; pub use controls::Controls; pub use native_preview::{CompositionHandle, NativeCompositionPreview, SceneView, SceneViewProps}; pub use player::{Player, PlayerProps};