import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Blaze from 'meteor/gadicc:blaze-react-component'; import { OHIF } from 'ohif-core'; import './StudyList.css'; class StudyList extends Component { constructor(props) { super(props); } render() { return (
); } } StudyList.propTypes = { studies: PropTypes.array }; OHIF.studylist.components = { StudyList }; export default StudyList;