import React from "react"; import "./css/Tag.css" class Tag extends React.Component { constructor(props, context) { super(props, context); this.props = props; } render() { // todo onclick events correctly return ( ); } } export default Tag;