JSFiddle - React, Tailwind, and code Playground

by cahnory

HTML

<div id="expected">
    <table border="0" cellpadding="0" cellspacing="0" width="650" bgcolor="#DDD">
        <tr><td>content</td></tr>
    </table>
</div>
<script id="template" type="text/ractive">
    <component border="2" width="650" bgcolor="#DDD">
        <tr><td>content</td></tr>
    </component>
</script>

<script id="component" type="text/ractive">
    <table border="{{ border }}" cellpadding="0" cellspacing="0" {{>attributes}}>
        {{>content}}
    </table>
</script>