import { h, Component } from 'preact' import React from 'react' // import PropTypes from 'prop-types' const Link = ({ active, children, onClick }) => { if (active) { return {children} } return ( // eslint-disable-next-line { e.preventDefault() onClick() }} > {children} ) } // Link.propTypes = { // active: PropTypes.bool.isRequired, // children: PropTypes.node.isRequired, // onClick: PropTypes.func.isRequired // } export default Link