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} />;
 };