page.tsx async function
Answered
Shayokh posted this in #help-forum
ShayokhOP
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
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