sanity-plugin-another-table
v1.0.2
Published
Table schema type and input component for Sanity CMS
Downloads
3,420
Maintainers
Readme
Sanity Table Plugin
Forked form rdunk/sanity-plugin-table.
Install
Install using the Sanity CLI.
$ npm i sanity-plugin-another-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',
},
],
};