blob: bff0b70dc0c0773850285bb3244c8d73c857b3bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { render } from 'preact';
import { NodeEditor } from './NodeEditor.tsx';
import './index.css';
export const App = () => {
return (
<NodeEditor />
);
};
render(<App />, document.body);
|