How do you write an inline style specifying the font-size:12px and color:red; in JSX
style={{font-size:12,color:'red'}}
style={{fontSize:'12px',color:'red'}}
style={fontSize:'12px',color:'red'}
style={{font-size:12px,color:'red'}}
Correct Answer : B
Everything in React is a _____________
In which directory React Components are saved?
What is state in React?