JSFiddle - React, Tailwind, and code Playground

by niki4810

HTML

<script src="https://output.jsbin.com/himudeb.js"></script>
<div class="js-custom-console-container">
	<button class="js-btn-toggle-custom-console">
		Toggle Console
	</button>
	<textarea class="js-custom-console"></textarea>
</div>
<!-- You HTML Goes  here -->

CSS

body {
	background: #fff;
}
.js-custom-console-container {
	margin-bottom: 20px;
}
.js-btn-toggle-custom-console,
.js-custom-console.active {
	display: block;
}
.js-custom-console.active {
	min-width: 100%;
	min-height: 100px;
}
.js-custom-console {
	display:none;
}