Files
Borealis-Github-Replica/Data/Engine/web-interface/src/Devices/Agent_Devices.jsx
2025-11-01 04:07:15 -06:00

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}
/>
);
}