From dcbadcf9ccf3c237a484855f758ef699177a4349 Mon Sep 17 00:00:00 2001 From: Stanislav Date: Wed, 8 Nov 2023 15:50:04 +0400 Subject: [PATCH] [docs] broken links to react bindings API --- docs/docs/react-bindings.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/react-bindings.mdx b/docs/docs/react-bindings.mdx index 6d30f32..56e6118 100644 --- a/docs/docs/react-bindings.mdx +++ b/docs/docs/react-bindings.mdx @@ -11,9 +11,9 @@ We provide officially-supported React bindings for `signia` in two packages: - `signia-react` provides hooks for creating and consuming signals in functional components. - [`useAtom`](API/signia_react/functions/useAtom) - A hook for creating atomic signals. - - [`useComputed`](API/signia_react/functions/useAtom) - A hook for creating computed signals. - - [`track`](API/signia_react/functions/useAtom) - component wrapper for automatically tracking signal value access and re-rendering the wrapped component if the signals' values change. - - [`useValue`](API/signia_react/functions/useAtom) - A hook for manually tracking signal value access (not required if you use `track`) + - [`useComputed`](API/signia_react/functions/useComputed) - A hook for creating computed signals. + - [`track`](API/signia_react/functions/track) - component wrapper for automatically tracking signal value access and re-rendering the wrapped component if the signals' values change. + - [`useValue`](API/signia_react/functions/useValue) - A hook for manually tracking signal value access (not required if you use `track`) - `signia-react-jsx` provides a minimal global jsx integration for use with TypeScript's `jsxImportSource` option. This causes all functional components to be automatically tracked. It does not provide any automatic unpacking (i.e. dereferencing) of signal values.