Skip to content

Instantly share code, notes, and snippets.

View frantic's full-sized avatar
👾

Alex Kotliarskyi frantic

👾
View GitHub Profile
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
@frantic
frantic / .flowconfig
Last active August 20, 2017 17:29
Problem with Flow React HoC with cross modules deps
[ignore]
[include]
[libs]
[lints]
[options]
'CS47SI: 01. Initial State':
'prefix': 'std_initial_state'
'body': """
const initialStoreState = {
todos: [
{ id: 1, title: 'Build TODO app in under 1 hour', done: false },
{ id: 2, title: 'Prepare slides', done: false },
{ id: 3, title: 'Eat some cake', done: true },