import { memo } from 'react'; function WeatherSkeleton({ weatherType }) { return (
20C
{weatherType >= 2 && ( min max )}
{weatherType >= 2 && (
feels like x location
)}
{weatherType >= 3 && (
extra information
location
location
location
)}
); } export default memo(WeatherSkeleton);