import React, { useState } from 'react'; function ProfileTableItem(props) { const [descriptionOpen, setDescriptionOpen] = useState(false); return ( <>
{props.property}
{props.value}
{props.property}
{(props.status === 'Progress') ? (
{props.status}
) : (props.status === 'Stored') ? (
{props.status}
) : (props.status === 'Completed') ? (
{props.status}
) : (
{props.status}
) }
{(props.avatars) ? ( props.avatars.map((avatar, index) => ( Avatar )) ): null}
{/* Button */}
Transaction 0x12831823791203192418234841238468
{/* Progress validation bar */}

Today

); } export default ProfileTableItem;