9s-fe-core
Version:
Core functionalities for authentication, configuration, and repository management.
11 lines (10 loc) • 402 B
JavaScript
;
'use client';
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const NumberDisplay = ({ fieldItem }) => {
var _a;
const valueDisplay = (_a = fieldItem.value) !== null && _a !== void 0 ? _a : '';
return (0, jsx_runtime_1.jsx)("p", { children: valueDisplay }, fieldItem.key);
};
exports.default = NumberDisplay;