Next.js Discord

Discord Forum

page.tsx async function

Answered
Shayokh posted this in #help-forum
Open in Discord
Do I have to make it async or not async?
export default async function Page() {
  return <Home />;
}
Answered by Braconid wasp
You don't have to make it async unless you'll be using some async stuff
View full answer

1 Reply

@Shayokh Do I have to make it async or not async? js export default async function Page() { return <Home />; }
Braconid wasp
You don't have to make it async unless you'll be using some async stuff
Answer