-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Entry component list by virtual-dom and main-loop
Problem with vdom h Matt-Esch/virtual-dom#421
- Loading branch information
Roman
committed
Jul 6, 2019
1 parent
311b267
commit b0d009c
Showing
7 changed files
with
61 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
### CSS Variables | ||
|
||
## TODO | ||
* nav component try use, link rel | ||
* analize | ||
* preact move to app only | ||
``` | ||
|
3 changes: 3 additions & 0 deletions
3
src/webhive.frontend/app_modules/virtual-dom-h-proxy/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# virtual-dom-h-proxy | ||
Loop inside JSX templates has issues | ||
https://github.com/Matt-Esch/virtual-dom/issues/421 |
4 changes: 4 additions & 0 deletions
4
src/webhive.frontend/app_modules/virtual-dom-h-proxy/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "virtual-dom-h-proxy", | ||
"main": "src" | ||
} |
5 changes: 5 additions & 0 deletions
5
src/webhive.frontend/app_modules/virtual-dom-h-proxy/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const vdomh = require('virtual-dom/h'); | ||
|
||
export function h(type, props, ...children) { | ||
return vdomh(type, props, [children]); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters