jsketcher/modules/ui/components/controls/Label.jsx
2022-06-25 15:19:48 -07:00

7 lines
234 B
JavaScript

import React, {useContext} from 'react';
import {FieldId} from "ui/components/controls/Field";
export default function Label({children}) {
const fieldId = useContext(FieldId);
return <label htmlFor={fieldId}>{children}</label>
}