← back to Norma Platform

app/act/[id]/page.tsx

4 lines

import { Suspense } from 'react';
import ActionPage from '@/components/campaigns/ActionPage';
export default function Page(){return <Suspense fallback={<p>Loading action…</p>}><ActionPage/></Suspense>;}