-
Notifications
You must be signed in to change notification settings - Fork 2
errors
Moritz Roessler edited this page Mar 24, 2023
·
3 revisions
Functions in components can throw errors which get propagated back to the client.
backend/src/components/Examples.tsx
export const HelloWorldExample1 = () => {
const [count] = useState(0, { key: "count", scope: "global" });
const increase = () => {
throw new Error("Not implemented");
};
return <ServerSideProps count={count} increase={increase} />;
};
If you call the increase
function from the client, the server throws an error which you can handle in your client.
The error will be cleared after a successful call to a function was made.
frontend/src/server-components/Examples.tsx
const HelloWorldExample1 = () => {
const [{ count, increase }, { loading, error }] =
useComponent("hello-world-1");
return (
<>
{error && <Alert severity="error">{error.message}</Alert>}
<Button onClick={() => increase()} />
</>
);
};