import React from 'react'; import InlineSVG from 'react-inlinesvg'; const exitUrl = require('../../../images/exit.svg'); import { browserHistory } from 'react-router'; class About extends React.Component { componentDidMount() { this.refs.about.focus(); } closeAboutModal() { browserHistory.goBack(); } render() { return (

About

The p5.js Web Editor is an open source project.

Contribute or report a bug.

); } } export default About;