We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e50b4dc commit a9141f1Copy full SHA for a9141f1
src/components.rs
@@ -0,0 +1,10 @@
1
+#![allow(non_upper_case_globals)]
2
+
3
+use wasm_bindgen::prelude::*;
4
5
+crate::macro_import::wasm_bindgen_react! {
6
+ #[wasm_bindgen(js_namespace = React)]
7
+ static Fragment: JsValue;
8
9
+ static StrictMode: JsValue;
10
+}
src/lib.rs
@@ -1,10 +1,12 @@
+mod components;
mod element;
mod helpers;
mod macro_import;
mod use_effect;
mod use_ref;
mod use_state;
+pub use components::*;
pub use element::*;
11
pub use helpers::*;
12
pub use use_effect::*;
0 commit comments