uppy/examples/react-native-expo/SelectFilesButton.js
2019-04-03 15:28:14 +03:00

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>
)
}