ErrorBoundary
Let's go do ErrorBoundary.tsx now
// import at top
import { Component, ErrorInfo, ReactNode } from "react";
// delete constructor, replace with this:
state = {
redirect: "",
hasError: false
};
// add types and return types to parameters
static getDerivedStateFromError(): { hasError: boolean; redirect: boolean } {}
public componentDidCatch(error: Error, info: ErrorInfo): void {}
componentDidUpdate(): void {}
render(): ReactNode {}
- We didn't have to change from a constructor to a public class property but it makes typing so much easier because TS knows how to handle it implicitly if you use public class properties.
- We had to type the parameters and return types. We have TS in strict mode and a pretty strict set of linting rules which means it doesn't like anything to be an
any
type.