frontend/smart-hut/src/components/VideoTest.js
2020-05-12 15:18:33 +02:00

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