pavel-piuro
_hello
_about-me
_guestbook
_projects
_now
_more
_contact-me
EN
pavel-piuro
EN
Contact Pavel Piuro
contacts
piuro.pavel@gmail.com
+995511197449
find-me-also-in
Instagram account
Reddit account
Steam account
Twitch account
{ }
contact-form.tsx
×
📧
message.json
1
// Fill in the form below to send a message
2
interface
ContactForm
{
3
_name
: string
=
"
"
;
4
_email
: string
=
"
"
;
5
_message
: string
=
`
`
;
6
}
7
8
await
sendMessage
(
form
)
→
TypeScript React
UTF-8
Ln 1, Col 1
Spaces: 2
⚡
Live Preview
LIVE
1
2
3
4
5
6
7
8
9
10
11
12
const
button
=
document
.
querySelector
(
'#sendBtn'
);
const
message
=
{
name
:
""
,
email
:
""
,
message
:
""
,
date
:
"Fri Aug 21 2026"
}
button
.
addEventListener
(
'click'
, ()
=>
{
form
.
send
(
message
);
})
█
💬