frontend/smart-hut/src/views/Dashboard.js
2020-03-09 13:52:27 +01:00

11 lines
219 B
JavaScript

import React from 'react';
import DevicePanel from "../components/dashboard/DevicePanel";
export default function Dashboard(props){
return(
<div style={{height : "110vh"}}>
<DevicePanel />
</div>
)
}