AykutSarac 3 år sedan
förälder
incheckning
395eba5af6
1 ändrade filer med 4 tillägg och 4 borttagningar
  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} />;
 };