import { memo } from "react"; /** wrapper for memo that works with generic components. */ export const typedMemo: (c: T) => T = memo;