JSX Test Page
This is a simple test page to verify that JSX transformation is working correctly.
// This is how JSX should be transformed:
const element = React.createElement('div', null, 'Hello, world!');
// Instead of:
const element = jsx('div', null, 'Hello, world!');