JSFiddle - React, Tailwind, and code Playground

JavaScript

<script>
		function openNav() {
			document.getElementById('mysidenav').style.width = '100%';
		}
		function closeNav() {
			document.getElementById('mysidenav').style.width = '0';
		}
	</script>