Comment on page
Supported Devices Table
The supported device table enables you to filter, sort, and view all the devices compatible with Seam. You can use this table to indicate the devices that your platform supports.
{/* Show all devices from all manufacturers */}
<SupportedDeviceTable />
{/* Show devices from a single manufacturer by name */}
<SupportedDeviceTable manufacturers={["August"]} />
{/* Show devices from specific manufacturers by name */}
<SupportedDeviceTable manufacturers={["August", "NoiseAware"]} />
{/* Show devices from specific manufacturers by ID */}
<SupportedDeviceTable manufacturers={[
"August=cfe546ca-7a99-48e0-a665-4304dca85b4e",
"NoiseAware=34a8fd85-9ea4-4175-b6db-491e7457bcab",
]} />
Name | Type | Description |
---|---|---|
disableFilter | boolean
Optional | Hide the controls to filter the table. Default: false |
manufacturers | array
Optional | Only show devices from specified manufacturers. |
excludedManufacturers | array
Optional | Hide devices from specified manufacturers. |
className | string
Optional | Class name to add to the containing element of the rendered component. |
Last modified 1mo ago