Skip to content

Instantly share code, notes, and snippets.

@TimCodes
TimCodes / Scores.js
Created May 10, 2017 21:59 — forked from gbabiars/Scores.js
Basic example of RxJS and React
import React from 'react';
import axios from 'axios';
import Rx from 'rxjs';
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
scores: []
};
@TimCodes
TimCodes / index.html
Last active February 14, 2017 19:30 — forked from anonymous/index.html
simple reducers example
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[simple react counter]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<link href="http://extjs.cachefly.net/ext-3.1.0/resources/css/ext-all.css" rel="stylesheet" type="text/css" />
@TimCodes
TimCodes / index.html
Created February 14, 2017 19:30 — forked from anonymous/index.html
JS Bin [simple react counter] // source https://jsbin.com/rawefa
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[simple react counter]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<link href="http://extjs.cachefly.net/ext-3.1.0/resources/css/ext-all.css" rel="stylesheet" type="text/css" />