13 lines
170 B
TypeScript
13 lines
170 B
TypeScript
// No labels necessary
|
|
|
|
const AutoLabel = {
|
|
slug: 'auto-label',
|
|
fields: [{
|
|
name: 'text',
|
|
type: 'text',
|
|
label: 'Text',
|
|
}],
|
|
};
|
|
|
|
export default AutoLabel;
|