diff --git a/lazy-timer-fe/src/components/UserProfile.jsx b/lazy-timer-fe/src/components/UserProfile.jsx new file mode 100644 index 0000000..18b9602 --- /dev/null +++ b/lazy-timer-fe/src/components/UserProfile.jsx @@ -0,0 +1,68 @@ +import React from 'react'; +import { MdOutlineCancel } from 'react-icons/md'; + +import { Button } from '.'; +import { userProfileData } from '../data/dummy'; +import { useStateContext } from '../contexts/ContextProvider'; +import avatar from '../data/avatar.jpg'; + +const UserProfile = () => { + const { currentColor } = useStateContext(); + + return ( +
+
+

User Profile

+
+
+ user-profile +
+

Michael Roberts

+

Administrator

+

info@shop.com

+
+
+
+ {userProfileData.map((item, index) => ( +
+ + +
+

{item.title}

+

{item.desc}

+
+
+ ))} +
+
+
+
+ + ); +}; + +export default UserProfile;