const React = require('react'); const { Component } = require('react'); const { StyleSheet, View, TouchableOpacity, Text, Alert } = require('react-native'); class CustomTopBar extends Component { render() { return ( Alert.alert(this.props.title, 'Thanks for that :)')}> {this.props.text} ); } } module.exports = CustomTopBar; const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', justifyContent: 'center', alignSelf: 'center' }, text: { alignSelf: 'center', color: 'black', } });