├── test ├── Root.jsx └── index.js ├── docs ├── card.png ├── Container.jsx ├── Root.jsx ├── Install.jsx ├── Pre.jsx ├── App.jsx ├── Flex.jsx ├── CarbonAd.jsx ├── GithubButton.jsx ├── Footer.jsx ├── TweetButton.jsx ├── data.json ├── GA.jsx ├── Header.jsx ├── card.svg ├── Head.jsx ├── Usage.jsx ├── Style.jsx └── index.html ├── index.js ├── lib ├── render.js └── get-components.js ├── package.json ├── LICENSE.md ├── bin └── ejsx.js └── README.md /test/Root.jsx: -------------------------------------------------------------------------------- 1 |
2 |

Root test

3 |
4 | -------------------------------------------------------------------------------- /docs/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/ejsx/HEAD/docs/card.png -------------------------------------------------------------------------------- /docs/Container.jsx: -------------------------------------------------------------------------------- 1 |
8 | -------------------------------------------------------------------------------- /docs/Root.jsx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
--------------------------------------------------------------------------------