AykutSarac 3 년 전
부모
커밋
395eba5af6
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/components/Image/index.tsx

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

@@ -1,15 +1,15 @@
-import React from 'react';
-import styled from 'styled-components';
+import React from "react";
+import styled from "styled-components";
 
 const StyledImage = styled.img`
   object-fit: contain;
   height: auto;
-  
+
   @media only screen and (max-width: 768px) {
     width: 100%;
   }
 `;
 
 export const Image = ({ ...props }) => {
-  return <StyledImage {...props} />
+  return <StyledImage {...props} />;
 };