Operand

thee, sea, us.

gram: docs

> ./examples/vite/src/main.tsx

import './styles.css';
import { createRoot } from 'react-dom/client';
import { App } from './App';
import { PreviewBanner } from '../../shared/PreviewBanner';
const container = document.getElementById('app');
if (container) {
const root = createRoot(container);
root.render(
<div style={{ display: 'flex', flexDirection: 'column', height: '100vh' }}>
<PreviewBanner />
<App />
</div>
);
}