You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undifined. Check the render method of 'Button'.
gives error:
React.createElement: type should not be null, undefined, boolean, or number. It should be a string (for DOM elements) or a ReactClass (for composite components).%s"
Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undifined. Check the render method of 'Button'.
<Button
isLoading={true}
style={styles.buttonStyle7} textStyle={styles.textStyle6}
onPress={() => {
console.log('world!')
}}>
Hello
it can"t work.
<Button
style={styles.buttonStyle6} textStyle={styles.textStyle}
onPress={() => {
console.log('world!')
}}>
Hello
it can work
The text was updated successfully, but these errors were encountered: