19 lines
490 B
TypeScript
19 lines
490 B
TypeScript
import {PasswordDialog} from "./components/passwordDialog";
|
|
import {Menu} from "./components/menu";
|
|
import "./styles.css";
|
|
|
|
export default function WebApp() {
|
|
document.addEventListener('promptpassword', (evt) => {
|
|
const password = document.querySelector('#password');
|
|
if (password) {
|
|
(password as HTMLInputElement).style.display = 'block';
|
|
}
|
|
});
|
|
return (
|
|
<div>
|
|
<Menu/>
|
|
<PasswordDialog/>
|
|
</div>
|
|
)
|
|
}
|