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' | |
export default class Homepage extends React.Component { | |
render() { | |
return <div>I am a sentence in English.</div> | |
} | |
} |
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, { Component } from 'react' | |
import { Link } from 'react-router' | |
import Radium from 'radium' | |
const styles = { | |
text: { | |
margin: '5rem auto .5rem', | |
textAlign: 'center', | |
'@media (min-width: 991px)': { | |
margin: '7rem auto 1.2rem', |
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
export default function flattenDeeplyNestedArray(array) { | |
return array.reduce((flattenedArray, value) => { | |
if (Array.isArray(value)) { | |
// If our value is an array itself, flatten again before concating | |
return flattenedArray.concat(flattenDeeplyNestedArray(value)) | |
} else { |
NewerOlder