From 3cdfba7950db6c1b336a51c3bc7ba56f1fb85d23 Mon Sep 17 00:00:00 2001 From: qwertyforce <44163887+qwertyforce@users.noreply.github.com> Date: Fri, 8 Jan 2021 18:50:46 +0300 Subject: [PATCH] Update Photo.tsx --- components/Photo.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Photo.tsx b/components/Photo.tsx index 92c26e3..a1fa534 100644 --- a/components/Photo.tsx +++ b/components/Photo.tsx @@ -3,7 +3,7 @@ /* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import React from 'react'; import PropTypes from 'prop-types'; - +import Link from './Link' const imgWithClick = { cursor: 'pointer' }; const Photo = ({ index, onClick, photo, margin, direction, top, left, key }:{ index:any, onClick:any, photo:any, margin:any, direction:any, top:any, left:any, key:any }) => { @@ -19,13 +19,13 @@ const Photo = ({ index, onClick, photo, margin, direction, top, left, key }:{ in }; return ( - + - + ); };