import { AppShell } from '@/components/layout/AppShell'
import { OperationDetail } from '@/components/operations/OperationDetail'

export default async function OperationDetailPage({ params }: { params: Promise<{ id: string }> }) {
  const { id } = await params
  return (
    <AppShell>
      <OperationDetail id={id} />
    </AppShell>
  )
}
