frontend/smart-hut/src/components/VideoTest.js

13 lines
224 B
JavaScript
Raw Normal View History

2020-04-22 18:14:18 +00:00
import React from "react";
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
}