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
import { | |
Chart as ChartJS, | |
CategoryScale, | |
LinearScale, | |
BarElement, | |
Title, | |
Tooltip, | |
Legend, | |
} from "chart.js"; | |
import { subDays } from "date-fns"; |
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
import React from "react"; | |
import { | |
createTableMultiSort, | |
Column, | |
Table, | |
SortDirection, | |
} from "react-virtualized"; | |
import "./styles.css"; | |
import { orderBy, sortBy } from "lodash"; |
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
{ | |
"window.zoomLevel": 0, | |
"workbench.iconTheme": null, | |
"workbench.colorTheme": "Sublime Material Theme - Dark", | |
"prettier.singleQuote": true, | |
"prettier.bracketSpacing": false, | |
"editor.fontSize": 14.5, | |
"editor.lineHeight": 22.8, | |
"editor.snippetSuggestions": "top", | |
"editor.minimap.enabled": true, |
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
{ | |
"window.zoomLevel": 0, | |
"workbench.iconTheme": null, | |
"workbench.colorTheme": "Sublime Material Theme - Dark", | |
"prettier.singleQuote": true, | |
"prettier.bracketSpacing": false, | |
"editor.fontSize": 14.5, | |
"editor.lineHeight": 22.8, | |
"editor.snippetSuggestions": "top", | |
"editor.minimap.enabled": true, |
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
pipeline { | |
agent { | |
label 'mac' | |
} | |
options { | |
timestamps() | |
} | |
environment { | |
JENKINS_SCRIPTS = '$JENKINS_HOME/scripts/app_features/' | |
BRANCH = "${params.Branch}" |
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
#import "AppDelegate.h" | |
#import <React/RCTBundleURLProvider.h> | |
// ********************************************** | |
// *** DON'T MISS: THE NEXT LINE IS IMPORTANT *** | |
// ********************************************** | |
#import "RCCManager.h" | |
// IMPORTANT: if you're getting an Xcode error that RCCManager.h isn't found, you've probably ran "npm install" | |
// with npm ver 2. You'll need to "npm install" with npm 3 (see https://github.com/wix/react-native-navigation/issues/1) |
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
/** | |
* Copyright (c) 2015-present, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
*/ | |
#import "AppDelegate.h" |