leptos/leptos_macro
martin frances 10c0a2de65
chore: cleared clippy warnings (#1190)
The change in indentation makes the PR hard to review

so I will discuss the change in conversational language

Two "if"'s checks were merged into one "if"

this

-        if let Some(expr) = node.value() {
-            if let syn::Expr::Tuple(tuple) = expr {

becomes

+        if let Some(Tuple(tuple)) = node.value() {
2023-06-15 20:11:50 -04:00
..
example feat: pass components with no props directly into the view as a function that takes only Scope (#1144) 2023-06-05 20:48:22 -04:00
src chore: cleared clippy warnings (#1190) 2023-06-15 20:11:50 -04:00
tests feat: RSX parser with recovery after errors, and unquoted text (#1054) 2023-05-21 06:45:53 -04:00
.gitignore Initial commit 2022-07-31 16:46:14 -04:00
Cargo.toml feat: RSX parser with recovery after errors, and unquoted text (#1054) 2023-05-21 06:45:53 -04:00