For an example, to set a style in react you could do
var css = {color: red}
and
Hello world
The outer curly braces tell the JSX parser that the syntax should be interpreted as javascript. The inner braces are used because the style variable accepts an object.
let's break this down:
hello