We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6034708 commit 886bae5Copy full SHA for 886bae5
client/src/components/WorkspaceList/WorkspaceThumbnailItem.tsx
@@ -1,3 +1,5 @@
1
+import { memo } from 'react';
2
+
3
import style from './style.module.scss';
4
5
interface WorkspaceThumbnailItemProps {
@@ -19,4 +21,4 @@ function WorkspaceThumbnailItem({ name }: WorkspaceThumbnailItemProps) {
19
21
);
20
22
}
23
-export default WorkspaceThumbnailItem;
24
+export default memo(WorkspaceThumbnailItem);
0 commit comments