Const
Decorator to set the status code of the response.
Optional
The status code of the response.
The headers for the response.
A method decorator.
import { Page, PageStatus } from '@stone-js/use-react';@Page('/user-profile')class UserPage { @PageStatus() handle() { return { name: 'John Doe' }; }} Copy
import { Page, PageStatus } from '@stone-js/use-react';@Page('/user-profile')class UserPage { @PageStatus() handle() { return { name: 'John Doe' }; }}
Decorator to set the status code of the response.