"use strict"; import classNames from "classnames"; import PropTypes from "prop-types"; import createReactClass from "create-react-class"; var PT = PropTypes; var AboutPage = createReactClass({ //fixme! - class AboutPage extends React.Component { propTypes: { toStatistics: PT.func.isRequired, }, toStatistics: function(e) { this.props.toStatistics(true); e.preventDefault(); e.stopPropagation(); }, render: function() { return (

About

People

  • Emanuel Dima
  • Leif-Jöran Olsson
  • Yana Panchenko
  • Oliver Schonefeld
  • Dieter Van Uytvanck

Statistics

Technology

The Aggregator uses the following software components:

The federated content search icon is made by Freepik from www.flaticon.com and licensed under CC BY 3.0

); } }); module.exports = AboutPage;