temp
This commit is contained in:
6
snippets/react/ReactApp.tsx
Normal file
6
snippets/react/ReactApp.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
export const ReactApp = () => {
|
||||
const root = createRoot(document.getElementById('app')!);
|
||||
root.render(<div>Hello, World!</div>);
|
||||
};
|
||||
Reference in New Issue
Block a user