// Action type.
const ADD_TODO = 'ADD_TODO';
// Action creator.
function addTodo(todo) {
return { type: ADD_TODO, todo };
}
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
const mockDispatch = () => {}; | |
function mapEverything(mapStateToProps, mapDispatchToProps, mergeProps, state, ownProps) { | |
const stateProps = mapStateToProps | |
? mapStateToProps(state, ownProps) | |
: {}; | |
const dispatchProps = mapDispatchToProps | |
? mapDispatchToProps(mockDispatch, ownProps) | |
: { |
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
# .ebextensions/01_install_yarn.config | |
files: | |
'/opt/elasticbeanstalk/hooks/appdeploy/pre/49install_yarn.sh' : | |
mode: '000755' | |
owner: root | |
group: root | |
content: | | |
#!/usr/bin/env bash | |
set -euxo pipefail |
// Action type.
const ADD_TODO = 'ADD_TODO';
// Action creator.
function addTodo(todo) {
Automatic Client ID Distribution for USCDI depends on you selecting a limited subset of FHIR resources, but it's painful to manually cross-reference to select exactly which ones (Epic documentation is here with the full list). Automated solution:
-
Create a new app at https://fhir.epic.com/Developer/Apps
-
On the edit page, deselect any selected APIs, and run in browser console:
$("#WebServicesChosen option[data-uscdi-readonly=True]").each((i, item) => {
OlderNewer