JSFiddle - React, Tailwind, and code Playground

by Keith Henry

HTML

<link href="https://polygit.org/components/polymer/polymer.html" rel="import">

<dom-module id="test-thing">
    <template>
        <template is="dom-if" if="{{title}}" restamp>
            <h3>[[title]]</h3>
        </template>
        <template is="dom-if" if="{{!title}}" restamp>
            <i>no title</i>
        </template>
    </template>
    <script>Polymer({ 
    	is: 'test-thing',
      properties: {title: String}
      });</script>
</dom-module>

<div>
<test-thing></test-thing>
</div>
<div>
<test-thing title="Has Title"></test-thing>
</div>