JSFiddle - React, Tailwind, and code Playground

by imys

HTML

<div id="app">
  <test></test>
</div>

CSS

.test {
  padding: 20px;
  background: #000;
}

Vue

new Vue({
	el: '#app',
  components: {
  	test: {
    	template: "<div class=\"test\">\n    <div>\n        <input>\n </input>\n    </div>\n</div>"
    }
  }
})