import React from 'react' import type { AccountConnectedEvent } from '../../../providers/events/State' import { Text } from '../../shared' import { Property, Table } from './components' import { Address } from './components/Address' interface Props { event: AccountConnectedEvent } export function AccountConnectedPreview({ event }: Props) { return ( <> An account has been connected to the application. It can now be used to sign transactions.
) }