import { useMemo } from 'react'
import classNames from 'classnames'
import { getURLsFromString } from '~/utils/url'
import { NotificationPayload } from '~/utils/transactions'
import ChronologicalScrollableFeed from '~/components/ChronologicalScrollableFeed'
export default function Notifications(props: {
notifications: NotificationPayload[]
className?: string
style?: React.CSSProperties
isCompleted: boolean
isFocused?: boolean
}) {
return (
No notifications sent yet.{' '}
Use ✔ Transaction completed
Notifications are not delivered in development, but they appear here
to preview behavior for live actions.
io.notify() in your action to send
notifications.