mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
19 lines
524 B
Svelte
19 lines
524 B
Svelte
<script lang="ts">
|
|
import { DataTable } from "carbon-components-svelte";
|
|
|
|
const headers = [
|
|
{ key: "id", value: "id" },
|
|
{ key: "contact.company", value: "Company name" },
|
|
] as const;
|
|
|
|
const rows = [
|
|
{ id: "1", contact: { company: "Company 1" } },
|
|
{ id: "2", contact: { company: "Company 2" } },
|
|
];
|
|
</script>
|
|
|
|
<DataTable radio {headers} {rows} />
|
|
<DataTable radio {headers} {rows} />
|
|
|
|
<DataTable batchSelection selectable {headers} {rows} />
|
|
<DataTable batchSelection selectable {headers} {rows} />
|