JSFiddle - React, Tailwind, and code Playground
by sperske
HTML
<template id="templateQuote">
<h1 data-field="quote"></h1>
<p data-field="attrib"></p>
<small data-field='datePosted'></small>
</template>
<div id="Quotes">
</div>
<form id="Inspire">
<textarea placeholder="Live, Laugh, Love, Inspire"></textarea>
<button>Post Inpiration</button>
</form>
JavaScript
document.Inspire.addEventListener((e) => {
e.preventDefault();
})