frontend/smart-hut/src/views/Dashboard.js

11 lines
219 B
JavaScript
Raw Normal View History

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