Files
payload/demo/collections/AutoLabel.ts
2020-11-30 14:16:55 -05:00

13 lines
250 B
TypeScript

import { PayloadCollectionConfig } from '../../src/collections/config/types';
const AutoLabel: PayloadCollectionConfig = {
slug: 'auto-label',
fields: [{
name: 'text',
type: 'text',
label: 'Text',
}],
};
export default AutoLabel;