import React from 'react'; import { PhotoProvider, PhotoView } from 'react-photo-view'; import 'react-photo-view/dist/react-photo-view.css'; import { Box, Image, ImageProps } from '@chakra-ui/react'; import { useSystem } from '../../../hooks/useSystem'; import Loading from '../MyLoading'; const MyPhotoView = ({ ...props }: ImageProps) => { const { isPc } = useSystem(); return ( } > ); }; export default MyPhotoView;