chore: remove unused files

This commit is contained in:
Elliot DeNolf
2022-07-26 11:02:53 -04:00
parent d176633804
commit 2c9d45c59c
2 changed files with 0 additions and 40 deletions

View File

@@ -1,13 +0,0 @@
import type { CollectionConfig } from '../../../../src/collections/config/types';
const DateField: CollectionConfig = {
slug: 'date-field',
fields: [
{
name: 'date',
type: 'date',
},
],
};
export default DateField;

View File

@@ -1,27 +0,0 @@
import type { CollectionConfig } from '../../../../src/collections/config/types';
const RadioFields: CollectionConfig = {
slug: 'radio-fields',
fields: [
{
name: 'radio',
type: 'radio',
options: [
{
label: 'Value One',
value: 'one',
},
{
label: 'Value Two',
value: 'two',
},
{
label: 'Value Three',
value: 'three',
},
],
},
],
};
export default RadioFields;