Skip to content

Instantly share code, notes, and snippets.

import {createStore} from 'redux';
const store = createStore(reducer);
<Provider store={store} />
<App />
</Provider>
import React, {Component} from "react";
import PropTypes from "prop-types";
export default class Provider extends Component {
const {dispatch, subscribe, getState} = this.props.store;
getChildContext(){
return {dispatch, subscribe, getState};
}
return (
export const createStore = (reducer, initialState = {}) => {
let currentState = initialState;
const listeners = [];
function getState() {
return currentState;
}
function dispatch(action) {
currentState = reducer(currentState, action);
{!!this.state.errors ?
<VanishingComponent time={10000} transitionDuration={2000}>
<Message
compact
warning={!!this.state.errors}
header='Error'
content={this.state.errors}
/>
</VanishingComponent>
:
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import {Transition} from 'semantic-ui-react'
export default class VanishingComponent extends Component {
constructor (props) {
super(props)
this.state = {
visible: true
}