griefed last commit

This commit is contained in:
2026-01-05 17:20:11 -05:00
parent 2fadfe4b82
commit 32e45e9238

View File

@@ -55,12 +55,12 @@ impl DefaultUiState {
}
pub trait HasDefaultUiState: Sized + 'static {
type Event = ();
fn default_state(&self) -> &DefaultUiState;
fn default_state_mut(&mut self) -> &mut DefaultUiState;
}
pub trait DefaultAppState: HasDefaultUiState {
type Event = ();
fn new(ui_state: DefaultUiState, rsc: &mut DefaultRsc<Self>, proxy: Proxy<Self::Event>)
-> Self;
#[allow(unused_variables)]