I'm currently learning React Native and wondering why some props have values in quotes "" and some have their values in curly braces {}.
Is there a standard to when I should be using quotes vs braces?
<Button title="Press me" onPress={() => console.log("Hello")}/>
For example, in the line above the title is written using quotes but the onPress property uses the curly braces.