Skip to content

Commit

Permalink
ar(rebase)
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloreale committed Aug 26, 2024
2 parents 0ddd12e + ede0313 commit c7d9705
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/app/[locale]/dash/services/hypnos/[mode]/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// page.tsx
import { DPPublicListings } from '@blocks/server';

export default function Home({ params }: any) {
const mode = params?.mode || 'list';
return (
<main>
<section>
<DPPublicListings mode={mode} />
</section>
</main>
);
}

0 comments on commit c7d9705

Please sign in to comment.