Skip to content

Instantly share code, notes, and snippets.

View mohadib's full-sized avatar

Foo McBarr mohadib

View GitHub Profile
@mohadib
mohadib / zustandConnect.tsx
Last active January 28, 2025 16:31
zustand connect, like redux connect for class components
import React, {ComponentType} from 'react'
import {useShallow} from 'zustand/react/shallow'
import {AnnotationApiShape} from './AnnotationApi'
import hoistNonReactStatics from 'hoist-non-react-statics'
export const zustandConnect = (useStore: any, selector: (state: AnnotationApiShape) => any) => {
return (Component: ComponentType) => {
const forwarded = React.forwardRef(
(props, ref) => (
<Component