Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincompton committed Aug 1, 2023
1 parent d300a82 commit 1810199
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pages/pool/[id]/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { FundingPoolProjectHeader } from "@/devlink";
import { ReadyToLaunchComponent } from "@/devlink/ReadyToLaunchComponent";

export default function PoolPage({ params }: { params: { slug: string } }) {
return (
<FundingPoolProjectHeader />
<>
<FundingPoolProjectHeader />
<ReadyToLaunchComponent />
</>
);
}

0 comments on commit 1810199

Please sign in to comment.