13 lines
172 B
JavaScript
13 lines
172 B
JavaScript
// No labels necessary
|
|
|
|
const AutoLabel = {
|
|
slug: 'auto-label',
|
|
fields: [{
|
|
name: 'text',
|
|
type: 'text',
|
|
label: 'Text',
|
|
}],
|
|
};
|
|
|
|
module.exports = AutoLabel;
|