14 lines
203 B
JavaScript
14 lines
203 B
JavaScript
const Field = ({ children }) => (
|
|
<label>
|
|
{children}
|
|
<style jsx>{`
|
|
label {
|
|
display: block;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
`}</style>
|
|
</label>
|
|
)
|
|
|
|
export default Field
|