Skip to content

Commit

Permalink
Add page
Browse files Browse the repository at this point in the history
  • Loading branch information
kmjennison committed Sep 9, 2023
1 parent de1cce8 commit 5bb7c05
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions example-app-router/app/ssr/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

import { useAuth } from '@/auth/context'
import styles from './page.module.css'

function Content() {
return (
<p>
SSR example.
</p>
)
}

export default function SSR() {
return (
<main className={styles.main}>
<Content />
</main>
)
}

0 comments on commit 5bb7c05

Please sign in to comment.