2017-10-02 16:56:14 +11:00

13 lines
188 B
JavaScript

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