import React from 'react' import figma from '@figma/code-connect' import { GridCellDefault, GridCellChips, GridCellButton, GridCellDropdownMenu, } from '.' import { GridEditorSwitch } from '../editors' import { Grid } from '../grids/grid' import { ListItem } from '@planview/pv-uikit' const GRID_CELL = '?node-id=3261:21348' figma.connect(GridCellDefault, GRID_CELL, { variant: { Type: 'Default renderer' }, example: () => , }) figma.connect(GridCellDefault, GRID_CELL, { variant: { Type: 'Tree renderer' }, example: () => ( ), }) figma.connect(GridCellChips, GRID_CELL, { variant: { Type: 'Chips renderer' }, example: () => , }) figma.connect(GridCellButton, GRID_CELL, { variant: { Type: 'Button renderer' }, example: () => ( {}} /> ), }) figma.connect(GridCellDropdownMenu, GRID_CELL, { variant: { Type: 'Dropdown renderer' }, example: () => ( ), }) figma.connect(GridEditorSwitch, GRID_CELL, { variant: { Type: 'Switch' }, example: () => ( {}} onConfirm={() => {}} /> ), })