JSFiddle - React, Tailwind, and code Playground

by mgiuffrida

HTML

<script>Polymer = {dom: 'shadow', lazyRegister: true, useNativeCSSProperties: false};</script>
<base href="https://polygit.org/polymer+:master/*+:master/components/">
<link rel="import" href="polymer/polymer.html">
<link rel="import" href="paper-checkbox/paper-checkbox.html">

<dom-module id="x-foo">
  <template>
    <style>
    </style>
    <paper-checkbox checked="{{checked}}"></paper-checkbox>
  </template>
</dom-module>

<x-foo checked></x-foo>

JavaScript

Polymer({is: 'x-foo'});