frontend/smart-hut/src/components/VideoTest.js
2020-04-22 20:14:18 +02:00

12 lines
224 B
JavaScript

import React from "react";
import DevicePanel from "./dashboard/DevicePanel";
export default class VideoTest extends React.Component {
render() {
return (
<div>
<DevicePanel />
</div>
);
}
}