Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.

toba/state

Repository files navigation

npm package Build Status Code style Dependencies DevDependencies Test Coverage

Toba State

Flux pattern state management.

Usage

yarn add @toba/state

Example

import React from 'react';
import { State, StateStore, flux } from '@toba/state';

export interface UserState extends State {
   notifications: string[];
   signedIn: boolean;
   fullName?: string;
   photoURL?: string;
   status: Status;
}

class Store extends StateStore<UserState> {
   constructor() {
      super({
         notifications: [] as string[],
         signedIn: false,
         status: null
      });
   }
}

export const userStore = flux.subscribe(new Store());

License

Copyright © 2019 Jason Abbott

This software is licensed under the MIT license. See the LICENSE file accompanying this software for terms of use.

About

Flux pattern state management

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published