UNPKG

rebyb-redux

Version:

rebyb-redux is a lightweight, Redux-like state management library for React applications, designed for simplicity and efficiency. Built with TypeScript, it allows developers to easily manage global state with a minimal setup. With features like customizab

7 lines (6 loc) 156 B
export interface InitialStateTypes { nav: boolean; activeTab: string; } declare const initialState: InitialStateTypes; export default initialState;