mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-12-15 18:55:48 -07:00
14 lines
257 B
JavaScript
14 lines
257 B
JavaScript
import React from "react";
|
|
import DeviceList from "./Device_List.jsx";
|
|
|
|
export default function AgentDevices(props) {
|
|
return (
|
|
<DeviceList
|
|
{...props}
|
|
filterMode="agent"
|
|
title="Agent Devices"
|
|
showAddButton={false}
|
|
/>
|
|
);
|
|
}
|