-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flexible selector fields; fix bug with WillMount
selector fields in filter bar now have selections based on keys in corresponding summaryData object; fixed issue with render happening before WillMount that breaks everything, render Loading.js until summaryData is ready (facebook/react#7048)
- Loading branch information
1 parent
9cb14ea
commit 2144513
Showing
4 changed files
with
38 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
|
||
var Loading = React.createClass({ | ||
getInitialState : function() { | ||
return {} | ||
}, | ||
|
||
render : function() { | ||
return ( | ||
<h2>Loading the best webpage ever! Please stand by.</h2> | ||
) | ||
} | ||
}); | ||
|
||
export default Loading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters