2020-04-22 18:14:18 +00:00
|
|
|
import React from "react";
|
2020-04-18 15:40:05 +00:00
|
|
|
import DevicePanel from "./dashboard/DevicePanel";
|
|
|
|
|
|
|
|
export default class VideoTest extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<DevicePanel />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2020-04-22 18:14:18 +00:00
|
|
|
}
|