You need to find all files recursively in the project folder "js" with this pattern inside file code: "memo(_" (not regexp, strict comparison) and for each file run separate subtack with following instructions:
You need to refactor the component declaration and move the "memo" decorator to the original component, removing extra "_Component" variable. For components with TypeScript generics use import { memoGeneric } from '@/js/libs/memo';
Examples:
// FROM const _Table = (props: T) => ;