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

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