Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
}
render() {
const TestableActionButton = wrap(ActionButton);
return (
);
}
}
export default hook(ActionBar);
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
justifyContent: 'space-around',
backgroundColor: '#FAFAFF',
paddingVertical: 8
}
});
render() {
return (
)
}
}
export default hook(SearchBar);
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 8,
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#C9C9CE',
},
input: {
height: 30,
flex: 1,
paddingHorizontal: 8,
backgroundColor: '#FFFFFF',
borderRadius: 4,
},