AykutSarac 3 rokov pred
rodič
commit
395eba5af6
1 zmenil súbory, kde vykonal 4 pridanie a 4 odobranie
  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} />;
 };