aboutsummaryrefslogtreecommitdiff
path: root/src/debug/Test.tsx
blob: c906dcc03db1499f7e28889c1ae354e6ac66ebbc (plain)
1
2
3
4
5
6
7
8
9
10
11
import * as React from 'react';
import * as ReactDOM from 'react-dom/client';
console.log('ENTERED');
class Test extends React.Component {
    render() {
        return <div> HELLO WORLD </div>;
    }
}
const root = ReactDOM.createRoot(document.getElementById('root')!);

root.render(<Test />);