2017-08-21 14:08:39 +10:00

12 lines
184 B
JavaScript

const FileInput = props =>
<div>
<input type="file" {...props} />
<style jsx>{`
div {
padding: 0.5em;
}
`}</style>
</div>
export default FileInput