React initial useState value from props is not being set – Reactjs
I have an Avatar component which is being passed a non-null url. I'm trying to set the initial value of avatarPath to this url but avatarPath is null. import { useState } from "react"; export default function Avatar({ uid, url,…