import { createElement } from 'react' /** SSR fixture component — rendered by the Bun worker in the bridge test. */ export default function Hello({ name }: { name: string }) { return createElement('div', { className: 'greeting' }, `Hello, ${name}!`) }