ExpandedTx - creation
This commit is contained in:
parent
1bd028b97a
commit
877cf5ea4b
|
@ -3,6 +3,7 @@ import React from 'react'
|
|||
import { AddressInfo } from '@gnosis.pm/safe-react-components'
|
||||
import { getNetwork } from 'src/config'
|
||||
|
||||
import { Transaction } from 'src/routes/safe/store/models/types/transaction'
|
||||
import { formatDate } from 'src/routes/safe/components/Transactions/TxsTable/columns'
|
||||
import Bold from 'src/components/layout/Bold'
|
||||
import Paragraph from 'src/components/layout/Paragraph'
|
||||
|
@ -23,7 +24,11 @@ const useStyles = makeStyles({
|
|||
},
|
||||
})
|
||||
|
||||
export const CreationTx = ({ tx }) => {
|
||||
type Props = {
|
||||
tx: Transaction
|
||||
}
|
||||
|
||||
export const CreationTx = ({ tx }: Props): React.ReactElement => {
|
||||
const classes = useStyles()
|
||||
|
||||
if (!tx) {
|
||||
|
|
Loading…
Reference in New Issue