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 { Text, View, TextInput, Button, StyleSheet, Platform } from 'react-native'; | |
import uuid from 'uuid'; | |
import { CheckBox } from 'react-native-elements'; | |
import Item from './Item'; | |
import ItemInput from './ItemInput'; | |
export default class TodoListContainer extends Component { | |
constructor(props) { | |
super(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
import React from 'react'; | |
import { Field, reduxForm } from 'redux-form'; | |
class StreamCreate extends React.Component { | |
renderError({ error, touched }) { | |
if (touched && error) { | |
return ( | |
<div className="ui error message"> | |
<div className="header">{error}</div> | |
</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
/** | |
* A function that flattens an array that contains and infinite amount of nested arrays. | |
* It uses iteration over recursion because the maximum call stack size is variant, | |
* based on factors external from JavaScript such as which browser the code is run within. | |
* This will be a problem for massive arrays, probably not relevant to this code challenge, | |
* but I thought it was an interesting consideration. | |
* | |
* The tests can be run here: https://repl.it/@jeffcodes/Nested-Array-Flattening | |
* | |
* @param {Array} input |