Skip to content

Instantly share code, notes, and snippets.

@ritzcod3
ritzcod3 / components_common_Profile.tsx
Created February 10, 2023 17:21 — forked from adrianhajdin/chart.config.ts
Build and Deploy a Full Stack MERN Dashboard App With CRUD, Auth, and Charts Using Refine
import { Email, Phone, Place } from '@mui/icons-material';
import { Box, Stack, Typography } from '@pankod/refine-mui';
import { ProfileProps, PropertyProps } from 'interfaces/common';
import PropertyCard from './PropertyCard';
function checkImage(url: any) {
let img = new Image();
img.src = url;
return img.width !== 0 && img.height !== 0;