Declarative scenes and reactivity for [Bevy](https://github.com/bevyengine/bevy) powered by [Actuate](https://github.com/actuate-rs/actuate).
```rs
use actuate::prelude::{*, Mut};
use bevy::prelude::*;
use bevy_mod_actuate::prelude::*;
// Timer composable.
#[derive(Data)]
struct Timer;
impl Compose for Timer {
fn compose(cx: Scope) -> impl Compose {
let current_time = use_mut(&cx, Time::default);
// Use the `Time` resource from the ECS world, updating the `current_time`.
use_world(&cx, move |time: Res