UNPKG

react-native-stonk-charts

Version:

A beautiful, performant chart library for React Native. Fork of react-native-wagmi-charts with Reanimated v4 support.

9 lines (6 loc) 227 B
import React from 'react'; import { CandlestickChartContext } from './Context'; import type { TContext } from './types'; export function useCandlestickChart(): TContext { return React.useContext(CandlestickChartContext); }