1 2 3 4 5 6 7 8 9 10 11 12
//! # 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 player; pub use controls::Controls; pub use player::{Player, PlayerProps};