Files
hpos-web/src/components/DeviceGraph.js

14 lines
277 B
JavaScript
Raw Normal View History

2023-07-26 15:35:17 +05:30
import React from 'react';
import './DeviceGraph.css';
import AbsorbanceGraph from './AbsorbanceGraph';
2023-07-26 15:35:17 +05:30
function DeviceGraph({ url, show }) {
return (
<div>
2023-07-22 13:51:20 +05:30
<AbsorbanceGraph url={url} show={show} />
</div>
);
}
2023-07-20 09:17:22 +05:30
export default DeviceGraph;