import { VSCodeBadge, VSCodeButton, VSCodeCheckbox, VSCodeDataGrid, VSCodeDataGridCell, VSCodeDataGridRow, VSCodeDivider, VSCodeDropdown, VSCodeLink, VSCodeOption, VSCodePanels, VSCodePanelTab, VSCodePanelView, VSCodeProgressRing, VSCodeRadio, VSCodeRadioGroup, VSCodeTag, VSCodeTextArea, VSCodeTextField, } from "@vscode/webview-ui-toolkit/react" function Demo() { // function handleHowdyClick() { // vscode.postMessage({ // command: "hello", // text: "Hey there partner! 🤠", // }) // } const rowData = [ { cell1: "Cell Data", cell2: "Cell Data", cell3: "Cell Data", cell4: "Cell Data", }, { cell1: "Cell Data", cell2: "Cell Data", cell3: "Cell Data", cell4: "Cell Data", }, { cell1: "Cell Data", cell2: "Cell Data", cell3: "Cell Data", cell4: "Cell Data", }, ] return (

Hello World!

Howdy!
A Custom Header Title Another Custom Title Title Is Custom Custom Title {rowData.map((row, index) => ( {row.cell1} {row.cell2} {row.cell3} {row.cell4} ))}
Add Remove Badge Checkbox Option 1 Option 2 Link Tab 1 Tab 2 Panel View 1 Panel View 2 Radio 1 Radio 2 Tag
) } export default Demo