-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ede937
commit 437057f
Showing
2 changed files
with
22 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { headers } from 'next/headers'; | ||
|
||
import { getStatus } from '../../api/status'; | ||
import { getRequestContext } from '../../utils/requestContext'; | ||
import Renderer from './renderer'; | ||
|
||
export default async function Page() { | ||
const { props } = await get(); | ||
return <Renderer {...props} /> | ||
} | ||
|
||
export async function get() { | ||
const response: Response = await getStatus(getRequestContext(headers())); | ||
|
||
return { | ||
props: { | ||
statusCode: response.status | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters