Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import type { FlexBoxProps } from '@xylabs/react-flexbox'
import type { PayloadDetailsRenderProps } from '@xyo-network/react-payload-plugin'
import type { PayloadDetailsListRenderProps } from '@xyo-network/react-payload-plugin'
import { PayloadDataMissing } from '@xyo-network/react-shared'
import type { UniswapCryptoMarketPayload } from '@xyo-network/uniswap-crypto-market-payload-plugin'
import React from 'react'

import { UniswapPairsCardView } from './Cards/index.ts'
import { UniswapPairsTableView } from './Table/index.ts'

export const UniswapDetailsRender: React.FC<PayloadDetailsRenderProps & FlexBoxProps> = ({ listMode, ...props }) => {
export const UniswapDetailsRender: React.FC<PayloadDetailsListRenderProps & FlexBoxProps> = ({ listMode, ...props }) => {
const { payload } = props
const uniswapPayload = payload ? (payload as UniswapCryptoMarketPayload) : undefined

0 comments on commit aacfa30

Please sign in to comment.