nak/components/item.jsx
2022-02-09 19:40:45 -03:00

18 lines
308 B
JavaScript

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>
)
}