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
{"lastUpload":"2020-10-28T15:31:12.889Z","extensionVersion":"v3.4.3"} |
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
Empty file |
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
Empty file |
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
{"lastUpload":"2019-05-03T13:15:14.357Z","extensionVersion":"v3.2.9"} |
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
let data; | |
let errorMessage; | |
const analyseImageWithVibrant = jest.fn( | |
() => new Promise((resolve, reject) => { | |
if (data) { | |
resolve(data); | |
} else { | |
reject(errorMessage); | |
} |
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 { connect } from 'react-redux'; | |
import React from 'react'; | |
import { loadStepDataRequest } from '../../redux/actions'; | |
import getStepByUid from '../../redux/selectors/getStepByUid'; | |
import * as PropTypes from '../proptypes'; | |
// Take state and feed in to component props |
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
// proptypes.js | |
import React from 'react'; | |
export const stepData = React.PropTypes.arrayOf( | |
React.PropTypes.shape({ | |
title: React.PropTypes.string.isRequired, | |
date: React.PropTypes.string.isRequired, | |
filename: React.PropTypes.string.isRequired, | |
colourAnalytics: React.PropTypes.arrayOf( |
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
//// | |
/// @group tools | |
/// @author Pedr Browne | |
/// @access public | |
//// | |
/// Create a floated list, clearfixing the container, floating children and | |
/// setting spacing between them. | |
/// | |
/// @param {String} $start-from |
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
<div class="Flexbox"> | |
<div class="Flexbox-child"></div> | |
<div class="Flexbox-child"></div> | |
</div> | |
<div class="Flexbox"> | |
<div class="Flexbox-child"></div> | |
<div class="Flexbox-child"></div> | |
<div class="Flexbox-child"></div> | |
</div> |
NewerOlder