Component Based UI

Component Based UI

react hello world

introducing JSX

const element = <h1>Hello, world!</h1>;
const name = 'Josh Perez';
const element = <h1>Hello, {name}</h1>;

rendering elements

Return home