mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
20 lines
491 B
JavaScript
20 lines
491 B
JavaScript
import React from 'react' // eslint-disable-line no-unused-vars
|
|
import { Text, TouchableHighlight } from 'react-native'
|
|
|
|
export default function SelectFiles (props) {
|
|
return (
|
|
<TouchableHighlight
|
|
onPress={props.showFilePicker}
|
|
style={{
|
|
backgroundColor: '#006bb7',
|
|
padding: 15
|
|
}}>
|
|
<Text
|
|
style={{
|
|
color: '#fff',
|
|
textAlign: 'center',
|
|
fontSize: 17
|
|
}}>Select files</Text>
|
|
</TouchableHighlight>
|
|
)
|
|
}
|