This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use wasm_bindgen::JsValue; | |
| use web_sys::{window, Url}; | |
| #[derive(Debug, Clone, PartialEq)] | |
| pub enum Route { | |
| Home, | |
| Profile { | |
| // optional user id | |
| // None means "me" | |
| user_id: Option<String> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Zed keymap | |
| // | |
| // For information on binding keys, see the Zed | |
| // documentation: https://zed.dev/docs/key-bindings | |
| // | |
| // To see the default key bindings run `zed: open default keymap` | |
| // from the command palette. | |
| [ | |
| { | |
| "bindings": { |
OlderNewer