This file contains hidden or 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
/* | |
Given props routeIndices such as [0, 2, 2, 4] and routes such as [RouteObj, RouteObj] passed to a React component, | |
use the routeIndices to traverse down the routes tree, via RouteObj children, to get the RouteObj title attribute. | |
For example, a <Route title="Home" /> from Found. | |
*/ | |
getTitleFromRouteImperative() { | |
const { routeIndices, routes } = this.props; |
This file contains hidden or 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
/** | |
* Google Sheet: | |
* https://docs.google.com/spreadsheets/d/1rkPwzZIE60Tjdk-Rq18tewy48vdpWk1dSD3wr4wp81w/copy | |
* | |
* For more info see: | |
* https://medium.com/@hisa_py/google-sheet-to-track-job-search-68c88c699d33 | |
*/ | |
// globals | |
var STATUS_COLUMN = 12; |
OlderNewer