Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 403 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 403 Bytes

Another Sanity Table Plugin

Forked form rdunk/sanity-plugin-table.

Usage

Simply specify table as a field type in your schema.

export default {
  name: 'product',
  title: 'Product',
  type: 'document',
  fields: [
    {
      name: 'sizeChart',
      title: 'Size Chart',
      type: 'table', // Specify 'table' type
    },
  ],
};