import ReactDOM from "react-dom/client"; import React from "react"; function DisplayResults({username, password}: any) { return (

username: {username}

password: {password}

) } export function render(args: any) { const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); root.render( ); }