more stuff and some polish on EventSigning.

This commit is contained in:
fiatjaf
2022-02-10 16:42:17 -03:00
parent 20ea54a282
commit 78b5cccfc2
4 changed files with 72 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react'
export default function Item({label, children}) {
export default function Item({label, hint, children}) {
return (
<div
style={{
@@ -10,7 +10,9 @@ export default function Item({label, children}) {
wordBreak: 'break-all'
}}
>
<b>{label}: </b>
<b data-wenk={hint} data-wenk-pos="right">
{label}:{' '}
</b>
{children}
</div>
)