integration/app/test-demo/src/index.tsx (6 lines of code) (raw):
import React from 'react';
import { createRoot } from 'react-dom/client';
import App from './app';
const container = document.getElementById('root');
const root = createRoot(container!);
root.render(<App />);