import React from 'react' import { Header3 } from '@app/components/general/header' import { useAuthContext } from '@app/components/providers/auth' import { HistoryList } from '@app/components/paginated/history' import { settingsHeadingStyle } from '@app/styles/headings' export const HistoryView = () => { const { account } = useAuthContext() const { activeSubscription } = account return (
History

The last websites added.

<> {activeSubscription ? ( ) : (
Your history will show here after upgrading to a paid plan.
)}
) }