I have a main.js with
React.render(
<h1>Hello, world!</h1>,
document.getElementById('myDiv')
);
I am using CodeKit, and it spits out the error: Unexpected token: operator (<). What am I missing that allows me to write HTML tags in my code?