Skip to content

Commit

Permalink
chore(playground): import static page
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermerodz committed Mar 12, 2024
1 parent ec8e097 commit 0ca4781
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 43 deletions.

This file was deleted.

8 changes: 3 additions & 5 deletions apps/website/src/app/(local-pages)/shadcn/static/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
'use server'

import { ClientComp } from './client-component'
import { default as ShadcnPage } from '../page'

export default async function StaticPage() {
export default async function StaticPage(pageProps: any) {
return (
<>
<ClientComp />
</>
<ShadcnPage {...pageProps} />
)
}

0 comments on commit 0ca4781

Please sign in to comment.