Products
const worksheets = [{
        minDimensions: [, 10],
        worksheetName: 'Post',
        tabs: true,
        columns: [{
                type: 'text',
                title: 'Title',
                width: '200px'
            },
            {
                type: 'calendar',
                title: 'Date',
                width: '150px'
            },
            {
                type: 'dropdown',
                title: 'Platform',
                width: '150px',
                source: []
            },
            {
                type: 'notes',
                title: 'Description',
                width: '200px'
            },
            {
                type: 'numeric',
                title: 'Number of comments',
                width: '200px'
            },
            {
                type: 'numeric',
                title: 'Number of reactions',
                width: '200px'
            },
        ],
    },
    {
        minDimensions: [, 10],
        worksheetName: 'Platform',
        columns: [{
                type: 'text',
                title: 'Name',
                width: '200px'
            },
            {
                type: 'number',
                title: 'Followers',
                width: '150px'
            },
            {
                type: 'number',
                title: 'Comment average',
                width: '170px'
            },
            {
                type: 'number',
                title: 'Reactions average',
                width: '170px'
            },
        ],
    }
];