This commit is contained in:
Kieran 2022-12-18 14:51:32 +00:00
commit 968ea78077
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

15
src/pages/ProfilePage.js Normal file
View File

@ -0,0 +1,15 @@
import { useSelector } from "react-redux";
import { useParams } from "react-router-dom";
export default function ProfilePage() {
const params = useParams();
const id = params.id;
const user = useSelector(s => s.users.users[id]);
return (
<div className="profile">
<img src={} />
</div>
)
}