From 8f66327b55beed9a6a27dcb89808e7d052e276ff Mon Sep 17 00:00:00 2001 From: catarak Date: Wed, 17 Aug 2016 16:09:20 -0400 Subject: [PATCH] add link to user's sketches in toolbar --- client/modules/IDE/components/Toolbar.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/modules/IDE/components/Toolbar.js b/client/modules/IDE/components/Toolbar.js index 463c2045..4ec26975 100644 --- a/client/modules/IDE/components/Toolbar.js +++ b/client/modules/IDE/components/Toolbar.js @@ -1,4 +1,5 @@ import React, { PropTypes } from 'react'; +import { Link } from 'react-router'; const InlineSVG = require('react-inlinesvg'); const playUrl = require('../../../images/play.svg'); const logoUrl = require('../../../images/p5js-logo.svg'); @@ -81,7 +82,9 @@ class Toolbar extends React.Component { {(() => { // eslint-disable-line if (this.props.owner) { return ( -

by {this.props.owner.username}

+

+ by {this.props.owner.username} +

); } })()}