Refactor component guide
Open
Technical Debt
- Dominant language
- Clojure
- Stars
- 66
- Forks
- 28
- Avg merge
- 7d 4h
- Merged PRs (30d)
- 2
Description
get rid of the `static-hiccup?` heuristic and instead use something simple like
```
[:h3 "table with watermelons"]
[:p "this is an explanation"]
(code
(rf/reg-sub ...)
[:table ...])
[:p "this is an explanation"]
```
or
```
(example "table with watermelons"
[:p "this is an explanation"]
(code
(rf/reg-sub ...)
[:table ...])
[:p "this is an explanation"])
```
Contributor guide
Assessment
This issue has not been assessed yet.