Aykut Saraç 3 лет назад
Родитель
Сommit
1d5e58c18d
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/components/Image/index.tsx

+ 1 - 1
src/components/Image/index.tsx

@@ -10,6 +10,6 @@ const StyledImage = styled.img`
   }
 `;
 
-export const Image: React.FC = ({ ...props }) => {
+export const Image = ({ ...props }) => {
   return <StyledImage {...props} />
 };