From 133837cdbed146b0b2adec13f739aed2f67adbe9 Mon Sep 17 00:00:00 2001 From: lukebarnard Date: Tue, 2 Jan 2018 15:59:10 +0000 Subject: [PATCH] Document initial state --- src/components/views/elements/TagTile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/views/elements/TagTile.js b/src/components/views/elements/TagTile.js index 00aea1efd3..eb9a5cbdd9 100644 --- a/src/components/views/elements/TagTile.js +++ b/src/components/views/elements/TagTile.js @@ -44,7 +44,9 @@ export default React.createClass({ getInitialState() { return { + // Whether the mouse is over the tile hover: false, + // The profile data of the group if this.props.tag is a group ID profile: null, }; },