hyperapp-is 0.1.17 → 0.1.19
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 +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -364,7 +364,7 @@ Hyperapp の h 関数ラッパー。JSX と競合する場合に使用
|
|
|
364
364
|
children の処理も同時に行っているため、本ライブラリでは VNode を作成する際に使用しています
|
|
365
365
|
|
|
366
366
|
```ts
|
|
367
|
-
export const el = (tag: string) =>
|
|
367
|
+
export const el = <S = any> (tag: string) => (
|
|
368
368
|
props ?: { [key: string]: any },
|
|
369
369
|
children?: Array
|
|
370
370
|
): VNode<S>
|