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