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 a8cde33 commit 42f943aCopy full SHA for 42f943a
packages/frender/Cargo.toml
@@ -61,6 +61,7 @@ default = [
61
"context",
62
"SyncedCollection",
63
"KeyedElements",
64
+ "Memo",
65
]
66
nightly = ["frender-render-with?/nightly"]
67
html = ["csr"]
@@ -81,3 +82,4 @@ ToElement = []
81
82
context = ["dep:frender-context"]
83
hooks = ["dep:hooks", "frender-context?/hooks"]
84
SyncedCollection = []
85
+Memo = []
packages/frender/src/lib.rs
@@ -93,7 +93,9 @@ pub mod style {
93
}
94
pub use frender_style::style::comma_separated as style;
95
96
+#[cfg(feature = "Memo")]
97
pub mod memoed;
98
99
pub use memoed::{memo, Memo};
100
101
#[cfg(all(feature = "web"))]
0 commit comments