initial version with basic event utils.

This commit is contained in:
fiatjaf
2022-02-09 19:40:45 -03:00
commit 8312d9ece7
10 changed files with 329 additions and 0 deletions

17
components/item.jsx Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react'
export default function Item({label, children}) {
return (
<div
style={{
marginBottom: '9px',
whiteSpace: 'pre-wrap',
wordWrap: 'break-word',
wordBreak: 'break-all'
}}
>
<b>{label}: </b>
{children}
</div>
)
}