ohif-viewer/Packages/ohif-study-list/client/components/StudyList.js

32 lines
602 B
JavaScript
Raw Normal View History

2018-12-12 09:10:39 +01:00
import React, { Component } from 'react';
import PropTypes from 'prop-types';
2018-12-12 09:10:39 +01:00
import Blaze from 'meteor/gadicc:blaze-react-component';
import { OHIF } from 'ohif-core';
import './StudyList.css';
2018-12-12 09:10:39 +01:00
class StudyList extends Component {
constructor(props) {
super(props);
}
render() {
return (
<div className='StudyList'>
<Blaze template="studylist" className='tempStudyList'/>
2018-12-12 09:10:39 +01:00
</div>
);
}
}
StudyList.propTypes = {
studies: PropTypes.array
2018-12-12 09:10:39 +01:00
};
OHIF.studylist.components = {
StudyList
};
export default StudyList;