17 lines
311 B
Rust
17 lines
311 B
Rust
/*
|
|
* @Date: 2022-10-11 23:13:17
|
|
* @LastEditTime: 2024-07-09 22:37:24
|
|
* @Description:
|
|
*/
|
|
|
|
use dioxus::signals::{GlobalSignal, Signal};
|
|
|
|
pub mod header;
|
|
pub mod menu;
|
|
pub mod sidebar;
|
|
|
|
// #[derive(Clone, Copy)]
|
|
// struct SidebarOpen(bool);
|
|
|
|
static SIDEBAR_OPEN: GlobalSignal<bool> = Signal::global(|| false);
|