# react-context-io **Repository Path**: mirrors_yesmeck/react-context-io ## Basic Information - **Project Name**: react-context-io - **Description**: Share state with ease. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # react-context-io Naive implementation of [rfcs#89](https://github.com/reactjs/rfcs/pull/89). ## Installation ```bash $ npm i react-context-io ``` Or ```bash $ yarn add react-context-io ``` ## Usage ```js import React, { useContext } from 'react'; import { createContextIO } from 'react-context-io'; const CountStore = createContextIO(0); const Result = () => { const count = useContext(CountStore); return