JSFiddle - React, Tailwind, and code Playground

by AlvaroJDart

HTML

<html>
<head>
<title>JSLoader</title>
</head>
<body>
<input id="input_file" type="file" multiple style=""/>
<div id="button"></div>
<script type="text/javascript" src="uploader.js"></script>

</body>
</html>

CSS

#input_file{
    position:absolute; 
    top:-999px; 
    visibility:hidden
}

#button { 
    width: 150px; 
    height:50px; 
    border-radius: 10px;
    background-color: green;
}