squint-cljs 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -151,6 +151,13 @@ Note that when using a Clojure expression, you escape the JSX context so when yo
151
151
  #jsx [:span "Even"])])
152
152
  ```
153
153
 
154
+ To pass props, you can use `:&`:
155
+
156
+ ``` clojure
157
+ (let [props {:a 1}]
158
+ #jsx [App {:& props}])
159
+ ```
160
+
154
161
  See an example of an application using JSX [here](https://squint-cljs.github.io/demos/squint/solidjs/) ([source](https://github.com/squint-cljs/squint/blob/main/examples/solidjs/src/App.cljs)).
155
162
 
156
163
  ## Async/await
@@ -177,6 +184,10 @@ In arbitrary order, these features are planned:
177
184
 
178
185
  See [slides](https://www.dropbox.com/s/955jgzy6hgpx67r/dcd2022-cljs-reimagined.pdf?dl=0) of a presentation given at Dutch Clojure Days 2022 about cherry and squint.
179
186
 
187
+ ## Development
188
+
189
+ Development happens in [compiler-common](https://github.com/squint-cljs/compiler-common).
190
+
180
191
  ## Core team
181
192
 
182
193
  The core team consists of:
package/core.js CHANGED
@@ -1122,4 +1122,6 @@ export function neg_QMARK_(x) {
1122
1122
 
1123
1123
  export function pos_QMARK_(x) {
1124
1124
  return x > 0;
1125
- }
1125
+ }
1126
+
1127
+ // comment