What is the difference between passing data in this way to properties in React?

Viewed 76

I have seen these ways to pass data to properties:

 <Header headerText={'Authentication'} />     

 <Header headerText="Authentication" /> 

What's the difference between them?

2 Answers
Related