aboutsummaryrefslogtreecommitdiff
path: root/src/debug/Test.tsx
blob: 856cf6bd4fa4a6158a0851427c1a8fe5dd4078c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from 'react';
import * as ReactDOM from 'react-dom/client';

class Test extends React.Component {
    render() {
        return <div> HELLO WORLD </div>;
    }
}

const root = ReactDOM.createRoot(document.getElementById('root')!);

root.render(<Test />);