Skip to content

Commit

Permalink
Addressed feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
amitraj2203 committed Jun 12, 2024
1 parent 740f948 commit 261d990
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions packages/element/src/react.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export { Fragment };
export { isValidElement };

/**
* @see https://reactjs.org/docs/react-api.html#reactmemo
* @see https://react.dev/reference/react/memo
*/
export { memo };

Expand All @@ -150,22 +150,22 @@ export { memo };
export { StrictMode };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usecallback
* @see https://react.dev/reference/react/useCallback
*/
export { useCallback };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usecontext
* @see https://react.dev/reference/react/useContext
*/
export { useContext };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usedebugvalue
* @see https://react.dev/reference/react/useDebugValue
*/
export { useDebugValue };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usedeferredvalue
* @see https://react.dev/reference/react/useDeferredValue
*/
export { useDeferredValue };

Expand All @@ -175,72 +175,72 @@ export { useDeferredValue };
export { useEffect };

/**
* @see https://reactjs.org/docs/hooks-reference.html#useid
* @see https://react.dev/reference/react/useId
*/
export { useId };

/**
* @see https://reactjs.org/docs/hooks-reference.html#useimperativehandle
* @see https://react.dev/reference/react/useImperativeHandle
*/
export { useImperativeHandle };

/**
* @see https://reactjs.org/docs/hooks-reference.html#useinsertioneffect
* @see https://react.dev/reference/react/useInsertionEffect
*/
export { useInsertionEffect };

/**
* @see https://reactjs.org/docs/hooks-reference.html#uselayouteffect
* @see https://react.dev/reference/react/useLayoutEffect
*/
export { useLayoutEffect };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usememo
* @see https://react.dev/reference/react/useMemo
*/
export { useMemo };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usereducer
* @see https://react.dev/reference/react/useReducer
*/
export { useReducer };

/**
* @see https://reactjs.org/docs/hooks-reference.html#useref
* @see https://react.dev/reference/react/useRef
*/
export { useRef };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usestate
* @see https://react.dev/reference/react/useState
*/
export { useState };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usesyncexternalstore
* @see https://react.dev/reference/react/useSyncExternalStore
*/
export { useSyncExternalStore };

/**
* @see https://reactjs.org/docs/hooks-reference.html#usetransition
* @see https://react.dev/reference/react/useTransition
*/
export { useTransition };

/**
* @see https://reactjs.org/docs/react-api.html#starttransition
* @see https://react.dev/reference/react/startTransition
*/
export { startTransition };

/**
* @see https://reactjs.org/docs/react-api.html#reactlazy
* @see https://react.dev/reference/react/lazy
*/
export { lazy };

/**
* @see https://reactjs.org/docs/react-api.html#reactsuspense
* @see https://react.dev/reference/react/Suspense
*/
export { Suspense };

/**
* @see https://reactjs.org/docs/react-api.html#reactpurecomponent
* @see https://react.dev/reference/react/PureComponent
*/
export { PureComponent };

Expand Down

0 comments on commit 261d990

Please sign in to comment.