react-occult
Version:
Layered Information Visualization based on React and D3
17 lines (13 loc) • 383 B
JavaScript
import React from 'react';
import PropTypes from 'prop-types';
const Annotation = props => {
return null;
};
Annotation.propTypes = {
x: PropTypes.number,
y: PropTypes.number,
coordinates: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
note: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
subject: PropTypes.object
};
export default Annotation;