{
const data = [
['', 'Tesla', 'Volvo', 'Toyota', 'Ford'],
['2019', 10, 11, 12, 13],
['2020', 20, 11, 14, 13],
['2021', 30, 15, 12, 13]
];
const container = html``;
const hot = new HandsOnTable(container, {
data: data,
rowHeaders: true,
colHeaders: true
});
yield container;
}