chore: remove unused import

This commit is contained in:
Greg Johnston 2024-08-12 08:09:12 -04:00
parent 3c2a2304e4
commit 9fc351ceac
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@
//! Use `SyncCallback` if the function is not `Sync` and `Send`.
use reactive_graph::owner::{LocalStorage, StoredValue};
use std::{cell::RefCell, fmt, rc::Rc, sync::Arc};
use std::{fmt, rc::Rc, sync::Arc};
/// A wrapper trait for calling callbacks.
pub trait Callable<In: 'static, Out: 'static = ()> {