Files
wlan-cloud-ucentralgw-ui/src/pages/DeviceListPage/index.js
2021-06-15 16:12:28 -04:00

11 lines
205 B
JavaScript

import React from 'react';
import DeviceList from '../../components/DeviceListTable';
const DeviceListPage = () => (
<div className="App">
<DeviceList />
</div>
);
export default DeviceListPage;