@astarte-platform/react-bootstrap
Version:
React Bootstrap theme, fields and widgets for react-jsonschema-form, powered by react-bootstrap, this is a package from a fork of official project
8 lines • 316 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
export default function DescriptionField({ id, description }) {
if (description) {
return (_jsx("div", { children: _jsx("div", { id: id, className: 'mb-3', children: description }) }));
}
return null;
}
//# sourceMappingURL=DescriptionField.js.map