GladysProject/Gladys

View on GitHub
front/src/routes/integration/all/melcloud/device-page/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import { connect } from 'unistore/preact';
import DeviceTab from './DeviceTab';
import MELCloudPage from '../MELCloudPage';

const DevicePage = props => (
  <MELCloudPage user={props.user}>
    <DeviceTab {...props} />
  </MELCloudPage>
);

export default connect('user', {})(DevicePage);