// Copyright 2017-2026 @pezkuwi/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EventRecord } from '@pezkuwi/types/interfaces'; import React from 'react'; import { Expander } from '@pezkuwi/react-components'; import { Event as EventDisplay } from '@pezkuwi/react-params'; interface Props { className?: string; value: EventRecord; } function Event ({ className = '', value: { event } }: Props): React.ReactElement { const eventName = `${event.section}.${event.method}`; return ( {event.data.length ? ( ) : null } ); } export default React.memo(Event);