Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Latest commit

 

History

History
39 lines (35 loc) · 1.33 KB

third-party.md

File metadata and controls

39 lines (35 loc) · 1.33 KB

Composi

Contents

Third Party Libraries

Composi works fine with third-party libraries. You can use Material Design Lite, Bootstrap, jQuery, Redux, Mobx, Lodash, Ramda. The only thing to be aware of is markup. If you are using JSX, any markup must respect the rule of well-formedness. This means that all HTML self-closing tags will have to be escaped in the render function with a forward slash:

wrong          correct
----------------------
<br>           <br/>
<hr>           <hr/>
<img>          <img/>
<input>        <input/>
<col>          <col/>
<param>        <param/>
<link>         <link/>
<meta>         <meta/>