fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/lib/componentTypes.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const isMemo = (component: any) => component.$$typeof === Symbol.for('react.memo');
export const isForwardRef = (component: any) =>
  component.$$typeof === Symbol.for('react.forward_ref');