sanity-plugin-another-table
Version:
Table schema type and input component for Sanity CMS
25 lines (21 loc) • 547 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _configAnotherTable = _interopRequireDefault(require("config:another-table"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _default = {
title: 'Table Row',
name: _configAnotherTable.default.rowType,
type: 'object',
fields: [{
name: 'cells',
type: 'array',
of: [{
type: 'string'
}]
}]
};
exports.default = _default;
//# sourceMappingURL=row.js.map