'use client' import React, { useState } from 'react' export function UserRoleLookup({ onLoad }: { onLoad: (userId: string) => void }) { const [userId, setUserId] = useState('00000000-0000-0000-0000-000000000001') return (
setUserId(e.target.value)} placeholder="User-ID eingeben..." className="border border-gray-300 rounded-lg px-3 py-2 text-sm flex-1 font-mono" />
) }