"": "const DataStorage = styled.div`\\n width: 100%;\\n height:100%;\\n align-item: start;\\n padding: 22vh 120px;\\n`;\\n\\nconst Container = styled.div`\\n background: rgba(255, 255, 255, 0.13);\\n border-radius: 16px;\\n box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);\\n backdrop-filter: blur(17.4px);\\n -webkit-backdrop-filter: blur(17.4px);\\n border: 1px solid rgba(255, 255, 255, 0.3);\\n`;\\n\\nconst handleClick = (buyerId, ECID, state, pub_key) => {\\n props.confirm(buyerId, ECID, state, pub_key).then(() => {});\\n};\\n\\nreturn (\\n <DataStorage className=\\\"bg-black\\\">\\n <span className=\\\" w-100 text-center text-white fw-bold\\\">Data</span>\\n <Container className=\\\"row d-flex justify-content-center mt-2 align-items-center w-100 mb-5\\\">\\n {props.waitingList ? (\\n <div className=\\\"card rounded-3 bg-transparent\\\">\\n <div className=\\\"card-body p-4\\\">\\n <table className=\\\"table text-white mb-4\\\">\\n <thead>\\n <tr>\\n <th scope=\\\"col\\\">No.</th>\\n <th scope=\\\"col\\\">Data</th>\\n <th scope=\\\"col\\\">Potential Client</th>\\n <th scope=\\\"col\\\">Actions</th>\\n </tr>\\n </thead>\\n <tbody>\\n {props.waitingList.map((request, index) => {\\n return (\\n <tr>\\n <th scope=\\\"row\\\">{index + 1}</th>\\n <td>{request.informationData.title}</td>\\n <td>{request.buyer}</td>\\n <td>\\n <button\\n onClick={(e) => {\\n handleClick(\\n request.buyer,\\n request.ECID,\\n false,\\n request.buyer_public_key\\n );\\n }}\\n type=\\\"submit\\\"\\n className=\\\"btn btn-danger\\\"\\n >\\n Reject\\n </button>\\n <button\\n onClick={(e) => {\\n handleClick(\\n request.buyer,\\n request.ECID,\\n true,\\n request.buyer_public_key\\n );\\n }}\\n type=\\\"submit\\\"\\n className=\\\"btn btn-success ms-1\\\"\\n >\\n Accept\\n </button>\\n </td>\\n </tr>\\n );\\n })}\\n </tbody>\\n </table>\\n </div>\\n </div>\\n ) : (\\n <div className=\\\"py-5\\\">\\n <Widget src=\\\"tvh050423.testnet/widget/Reloading\\\" />\\n </div>\\n )}\\n </Container>\\n <span className=\\\"w-100 text-center text-white fw-bold\\\">\\n Member Directory\\n </span>\\n <Container className=\\\"row d-flex justify-content-center mt-2 align-items-center w-100\\\">\\n {props.waitingRole ? (\\n <div className=\\\"card rounded-3 bg-transparent\\\">\\n <div className=\\\"card-body p-4\\\">\\n <table className=\\\"table text-white mb-4\\\">\\n <thead>\\n <tr>\\n <th scope=\\\"col\\\">No.</th>\\n <th scope=\\\"col\\\">Project</th>\\n <th scope=\\\"col\\\">Potential Client</th>\\n <th scope=\\\"col\\\">Role</th>\\n <th scope=\\\"col\\\">Actions</th>\\n </tr>\\n </thead>\\n <tbody>\\n {props.waitingRole.map((role, index) => {\\n return (\\n <tr>\\n <th scope=\\\"row\\\">{index + 1}</th>\\n <td>{role.project_title}</td>\\n <td>{role.account_id}</td>\\n <td>{role.role}</td>\\n <td>\\n <button\\n onClick={(e) => {\\n handleClick(\\n role.buyer,\\n role.ECID,\\n false,\\n role.buyer_public_key\\n );\\n }}\\n type=\\\"submit\\\"\\n className=\\\"btn btn-danger\\\"\\n >\\n Reject\\n </button>\\n <button\\n onClick={(e) => {\\n handleClick(\\n role.buyer,\\n role.ECID,\\n true,\\n role.buyer_public_key\\n );\\n }}\\n type=\\\"submit\\\"\\n className=\\\"btn btn-success ms-1\\\"\\n >\\n Accept\\n </button>\\n </td>\\n </tr>\\n );\\n })}\\n </tbody>\\n </table>\\n </div>\\n </div>\\n ) : (\\n <div className=\\\"py-5\\\">\\n <Widget src=\\\"tvh050423.testnet/widget/Reloading\\\" />\\n </div>\\n )}\\n </Container>\\n </DataStorage>\\n);\\n"