Skip to content

Instantly share code, notes, and snippets.

View aerrity's full-sized avatar

Andrew Errity aerrity

View GitHub Profile
import React from 'react'
import ReactDOM from 'react-dom';
import {BrowserRouter, Route, Link} from 'react-router-dom';
const Home = () => (
<div>
<h2>Home</h2>
</div>
);
@aerrity
aerrity / react-signup-form-activity.js
Last active February 17, 2018 22:14
React signup form activity
import React from 'react';
import ReactDOM from 'react-dom';
class SignUp extends React.Component {
constructor() {
super();
this.state = {
insurance: true,
name: '',
email: '',
@aerrity
aerrity / react-form-multiple.js
Last active November 20, 2020 10:39
React controlled component (form) with multiple inputs example
import React from 'react';
import ReactDOM from 'react-dom';
class SignUp extends React.Component {
constructor(props) {
super(props);
this.state = {
newsLetter: true,
email: ''
};
@aerrity
aerrity / react-login-form.js
Last active February 17, 2018 22:20
React controlled component (form) example
import React from 'react';
import ReactDOM from 'react-dom';
class LoginForm extends React.Component {
constructor(props) {
super(props);
this.state = {username: ''};
// This binding is necessary to make `this` work in the callback
this.handleChange = this.handleChange.bind(this);
@aerrity
aerrity / react-loginout.js
Last active February 17, 2018 22:37
React event handling demo
import React from 'react';
import ReactDOM from 'react-dom';
class LogInOut extends React.Component {
constructor(props) {
super(props);
this.state = {isLoggedIn: true};
// This binding is necessary to make `this` work in the callback
this.handleClick = this.handleClick.bind(this);
import React from 'react';
import ReactDOM from 'react-dom';
class Clicky extends React.Component {
constructor() {
super();
this.state = {
clicked: 0
};
// This binding is necessary to make `this` work in the onclick callback
@aerrity
aerrity / react-countdown.js
Last active February 17, 2018 22:58
React countdown timer demo
import React from 'react';
import ReactDOM from 'react-dom';
class CountDown extends React.Component {
constructor(props) {
super(props);
this.state = {count: this.props.startValue};
}
componentDidMount() {
@aerrity
aerrity / react-props-example.js
Created January 30, 2018 22:06
React props example
import React from 'react';
import ReactDOM from 'react-dom';
function NameLength(props) {
return <h1>The name {props.name} contains {props.name.length} characters!</h1>;
}
function App() {
return (
<div>
@aerrity
aerrity / react-class-function.js
Created January 30, 2018 21:49
Components - function vs. class syntax
import React from 'react';
import ReactDOM from 'react-dom';
function ModuleTitle(props) {
return <h1>Welcome to the {props.name} module.</h1>;
}
// class ModuleTitle extends React.Component {
// render() {
// return <h1>Welcome to the {this.props.name} module.</h1>;
@aerrity
aerrity / react-clock-tick.js
Created January 30, 2018 21:43
React clock tick example
import React from 'react';
import ReactDOM from 'react-dom';
function tick() {
const element = (
<div>
<h1>Hello, world!</h1>
<h2>It is {new Date().toLocaleTimeString()}.</h2>
</div>
);