Cheatsheet for using React with TypeScript.

Web docs | Contribute! | Ask!
👋 This repo is maintained by @eps1lon and @filiptammergard. We're so happy you want to try out React with TypeScript! If you see anything wrong or missing, please file an issue! 👍
The Cheatsheet is focused on helping React devs use TypeScript effectively:
- Opinionated best practices and copy+pastable examples.
- Covers basic TS types and setup, plus advanced usage of generic types for people writing reusable type utilities and React+TS libraries.
- Advice for contributing to DefinitelyTyped.
Expand Table of Contents
- React TypeScript Cheatsheet
- Cheatsheet
- Table of Contents
- Setup
- Getting Started
- Function Components
- Hooks
- useState
- useCallback
- useReducer
- useEffect / useLayoutEffect
- useRef
- useImperativeHandle
- Custom Hooks
- More Hooks + TypeScript reading:
- Example React Hooks + TypeScript Libraries:
- Class Components
- Typing getDerivedStateFromProps
- You May Not Need
defaultProps - Typing
defaultProps - Consuming Props of a Component with defaultProps
- Misc Discussions and Knowledge
- Typing Component Props
- Basic Prop Types Examples
- Useful React Prop Type Examples
- Types or Interfaces?
- getDerivedStateFromProps
- My question isn't answered here!
- Contributors
- Cheatsheet
You can use this cheatsheet for reference at any skill level, but basic understanding of React and TypeScript is assumed. Here is a list of prerequisites:
- Basic understanding of React.
- Familiarity with TypeScript Basics and Everyday Types.
In the cheatsheet we assume you are using the latest versions of React and TypeScript.
React has documentation for how to start a new React project with some of the most popular frameworks. Here's how to start them with TypeScript:
- Next.js:
npx create-next-app@latest --ts - Remix:
npx create-remix@latest - Gatsby:
npm init gatsby --ts - Expo:
npx create-expo-app -t with-typescript
If you just want a client-side single-page app without a framework, Vite is the most common choice:
- Vite:
npm create vite@latest my-app -- --template react-ts
There are some tools that let you run React and TypeScript online, which can be helpful for debugging or making sharable reproductions.
These can be written as normal functions that take a props argument and return a JSX element.
// Declaring type of props - see "Typing Component Props" for more examplestypeAppProps={message: string;};/* use `interface` if exporting so that consumers can extend */// Easiest way to declare a Function Component; return type is inferred.constApp=({ message }: AppProps)=><div>{message}</div>;// You can choose to annotate the return type so an error is raised if you accidentally return some other typeconstApp=({ message }: AppProps): React.JSX.Element=><div>{message}</div>;// You can also inline the type declaration; eliminates naming the prop types, but looks repetitiveconstApp=({ message }: {message: string})=><div>{message}</div>;// Alternatively, you can use `React.FunctionComponent` (or `React.FC`), if you prefer.// With latest React types and TypeScript 5.1. it's mostly a stylistic choice, otherwise discouraged.constApp: React.FunctionComponent<{message: string}>=({ message })=>(<div>{message}</div>);// orconstApp: React.FC<AppProps>=({ message })=><div>{message}</div>;Tip: You might use Paul Shen's VS Code Extension to automate the type destructure declaration (incl a keyboard shortcut).
Why is React.FC not needed? What about React.FunctionComponent/React.VoidFunctionComponent?
You may see this in many React+TypeScript codebases:
constApp: React.FunctionComponent<{message: string}>=({ message })=>(<div>{message}</div>);However, the general consensus today is that React.FunctionComponent (or the shorthand React.FC) is not needed. If you're still using React 17 or TypeScript lower than 5.1, it is even discouraged. This is a nuanced opinion of course, but if you agree and want to remove React.FC from your codebase, you can use this jscodeshift codemod.
Some differences from the "normal function" version:
React.FunctionComponentis explicit about the return type, while the normal function version is implicit (or else needs additional annotation).It provides typechecking and autocomplete for static properties like
displayName,propTypes, anddefaultProps.- Note that there are some known issues using
defaultPropswithReact.FunctionComponent. See this issue for details. We maintain a separatedefaultPropssection you can also look up.
- Note that there are some known issues using
In the future, it may automatically mark props as
readonly, though that's a moot point if the props object is destructured in the parameter list.
In most cases it makes very little difference which syntax is used, but you may prefer the more explicit nature of React.FunctionComponent.
Hooks are supported in @types/react from v16.8 up.
Type inference works very well for simple values:
const[state,setState]=useState(false);// `state` is inferred to be a boolean// `setState` only takes booleansIf you need to use a complex type that you've relied on inference for, you can use typeof to capture the inferred type.
However, many hooks are initialized with null-ish default values, and you may wonder how to provide types. Explicitly declare the type, and use a union type:
const[user,setUser]=useState<User|null>(null);// later...setUser(newUser);You can also use type assertions if a state is initialized soon after setup and always has a value after:
const[user,setUser]=useState<User>({}asUser);// later...setUser(newUser);This temporarily "lies" to the TypeScript compiler that {} is of type User. You should follow up by setting the user state — if you don't, the rest of your code may rely on the fact that user is of type User and that may lead to runtime errors.
You can type the useCallback just like any other function.
constmemoizedCallback=useCallback((param1: string,param2: number)=>{console.log(param1,param2)return{ok: true}},[...],);/** * VSCode will show the following type: * const memoizedCallback: * (param1: string, param2: number) => { ok: boolean } */Note that for React < 18, the function signature of useCallback typed arguments as any[] by default:
functionuseCallback<Textends(...args: any[])=>any>(callback: T,deps: DependencyList,): T;In React >= 18, the function signature of useCallback changed to the following:
functionuseCallback<TextendsFunction>(callback: T,deps: DependencyList): T;Therefore, the following code will yield "Parameter 'e' implicitly has an 'any' type." error in React >= 18, but not <17.
// @ts-expect-error Parameter 'e' implicitly has 'any' type.useCallback((e)=>{},[]);// Explicit 'any' type.useCallback((e: any)=>{},[]);You can use Discriminated Unions for reducer actions. Don't forget to define the return type of reducer, otherwise TypeScript will infer it.
import{useReducer}from"react";constinitialState={count: 0};typeACTIONTYPE=|{type: "increment";payload: number}|{type: "decrement";payload: string};functionreducer(state: typeofinitialState,action: ACTIONTYPE,): typeofinitialState{switch(action.type){case"increment":
return{count: state.count+action.payload};case"decrement":
return{count: state.count-Number(action.payload)};default:
thrownewError();}}functionCounter(){const[state,dispatch]=useReducer(reducer,initialState);return(<>
Count: {state.count}<buttononClick={()=>dispatch({type: "decrement",payload: "5"})}>
-
</button><buttononClick={()=>dispatch({type: "increment",payload: 5})}>
+
</button></>);}View in the TypeScript Playground
Usage with Reducer from redux
In case you use the redux library to write reducer function, It provides a convenient helper of the format Reducer<State, Action> which takes care of the return type for you.
So the above reducer example becomes:
import{Reducer}from'redux';exportfunctionreducer: Reducer<AppState,Action>(){}Providing explicit types for useReducer
In most cases, type inference for useReducer should work reliably. When inference fails, the state and action types can be explicitly provided using the following syntax, where the action type is wrapped in a single-element tuple.
const[state,dispatch]=useReducer<typeofinitialState,[ACTIONTYPE]>(reducer,initialState,);Both of useEffect and useLayoutEffect are used for performing side effects and return an optional cleanup function which means if they don't deal with returning values, no types are necessary. When using useEffect, take care not to return anything other than a function or undefined, otherwise both TypeScript and React will yell at you. This can be subtle when using arrow functions:
functionDelayedEffect(props: {timerMs: number}){const{ timerMs }=props;useEffect(()=>setTimeout(()=>{/* do stuff */},timerMs),[timerMs],);// bad example! setTimeout implicitly returns a number// because the arrow function body isn't wrapped in curly bracesreturnnull;}Solution to the above example
functionDelayedEffect(props: {timerMs: number}){const{ timerMs }=props;useEffect(()=>{setTimeout(()=>{/* do stuff */},timerMs);},[timerMs]);// better; use the void keyword to make sure you return undefinedreturnnull;}useRef always returns a RefObject<T> in current @types/react. An initial value is required, and the returned .current is typed based on it. (MutableRefObject is deprecated and only kept for backwards compatibility.)
To access a DOM element: provide the element type as a generic and pass null as the initial value. React manages .current for you, and TypeScript expects you to pass this ref to an element's ref prop:
functionFoo(){// - If possible, prefer as specific as possible. For example, HTMLDivElement// is better than HTMLElement and way better than Element.// - Technical-wise, this returns RefObject<HTMLDivElement>constdivRef=useRef<HTMLDivElement>(null);useEffect(()=>{// Note that ref.current may be null. This is expected, because you may// conditionally render the ref-ed element, or you may forget to assign itif(!divRef.current)throwError("divRef is not assigned");// Now divRef.current is sure to be HTMLDivElementdoSomethingWith(divRef.current);});// Give the ref to an element so React can manage it for youreturn<divref={divRef}>etc</div>;}If you are sure that divRef.current will never be null, it is also possible to use the non-null assertion operator !:
constdivRef=useRef<HTMLDivElement>(null!);// Later... No need to check if it is nulldoSomethingWith(divRef.current);Note that you are opting out of type safety here - you will have a runtime error if you forget to assign the ref to an element in the render, or if the ref-ed element is conditionally rendered.
Tip: Choosing which HTMLElement to use
Refs demand specificity - it is not enough to just specify any old HTMLElement. If you don't know the name of the element type you need, you can check lib.dom.ts or make an intentional type error and let the language service tell you:
To hold a mutable value across renders without re-rendering on change: pass the initial value you want — React doesn't manage .current for you here, you write to it manually.
functionFoo(){constintervalRef=useRef<number|null>(null);useEffect(()=>{intervalRef.current=window.setInterval(()=>{/* ... */},1000);return()=>{if(intervalRef.current!==null)clearInterval(intervalRef.current);};},[]);return(<buttononClick={()=>{/* clearInterval the ref */}}>
Cancel timer
</button>);}In React 19, ref is a regular prop on function components, so useImperativeHandle is called with the ref prop directly — no forwardRef needed.
// Countdown.tsximport{useImperativeHandle,Ref}from"react";exporttypeCountdownHandle={start: ()=>void;};typeCountdownProps={ref?: Ref<CountdownHandle>;};constCountdown=({ ref }: CountdownProps)=>{useImperativeHandle(ref,()=>({// start() has type inference herestart(){alert("Start");},}));return<div>Countdown</div>;};// The component using the Countdown componentimport{useEffect,useRef}from"react";importCountdown,{CountdownHandle}from"./Countdown.tsx";functionApp(){constcountdownEl=useRef<CountdownHandle>(null);useEffect(()=>{if(countdownEl.current){// start() has type inference here as wellcountdownEl.current.start();}},[]);return<Countdownref={countdownEl}/>;}If you still maintain code that targets React < 19, see the forwardRef section for the legacy approach using
forwardRef<CountdownHandle, CountdownProps>.
If you are returning an array in your Custom Hook, you will want to avoid type inference as TypeScript will infer a union type (when you actually want different types in each position of the array). Instead, use TS 3.4 const assertions:
import{useState}from"react";exportfunctionuseLoading(){const[isLoading,setState]=useState(false);constload=(aPromise: Promise<any>)=>{setState(true);returnaPromise.finally(()=>setState(false));};return[isLoading,load]asconst;// infers [boolean, typeof load] instead of (boolean | typeof load)[]}View in the TypeScript Playground
This way, when you destructure you actually get the right types based on destructure position.
Alternative: Asserting a tuple return type
If you are having trouble with const assertions, you can also assert or define the function return types:
import{useState}from"react";exportfunctionuseLoading(){const[isLoading,setState]=useState(false);constload=(aPromise: Promise<any>)=>{setState(true);returnaPromise.finally(()=>setState(false));};return[isLoading,load]as[boolean,(aPromise: Promise<any>)=>Promise<any>,];}A helper function that automatically types tuples can also be helpful if you write a lot of custom hooks:
functiontuplify<Textendsany[]>(...elements: T){returnelements;}functionuseArray(){constnumberValue=useRef(3).current;constfunctionValue=useRef(()=>{}).current;return[numberValue,functionValue];// type is (number | (() => void))[]}functionuseTuple(){constnumberValue=useRef(3).current;constfunctionValue=useRef(()=>{}).current;returntuplify(numberValue,functionValue);// type is [number, () => void]}Note that the React team recommends that custom hooks that return more than two values should use proper objects instead of tuples, however.
- https://medium.com/@jrwebdev/react-hooks-in-typescript-88fce7001d0d
- https://fettblog.eu/typescript-react/hooks/#useref
If you are writing a React Hooks library, don't forget that you should also expose your types for users to use.
- https://github.com/mweststrate/use-st8
- https://github.com/palmerhq/the-platform
- https://github.com/sw-yx/hooks
Within TypeScript, React.Component is a generic type (aka React.Component<PropType, StateType>), so you want to provide it with (optional) prop and state type parameters:
typeMyProps={// using `interface` is also okmessage: string;};typeMyState={count: number;// like this};classAppextendsReact.Component<MyProps,MyState>{state: MyState={// optional second annotation for better type inferencecount: 0,};render(){return(<div>{this.props.message}{this.state.count}</div>);}}View in the TypeScript Playground
Don't forget that you can export/import/extend these types/interfaces for reuse.
Why annotate state twice?
It isn't strictly necessary to annotate the state class property, but it allows better type inference when accessing this.state and also initializing the state.
This is because they work in two different ways, the 2nd generic type parameter will allow this.setState() to work correctly, because that method comes from the base class, but initializing state inside the component overrides the base implementation so you have to make sure that you tell the compiler that you're not actually doing anything different.
No need for readonly
You often see sample code include readonly to mark props and state immutable:
typeMyProps={readonlymessage: string;};typeMyState={readonlycount: number;};This is not necessary as React.Component<P,S> already marks them as immutable. (See PR and discussion!)
Class Methods: Do it like normal, but just remember any arguments for your functions also need to be typed:
classAppextendsReact.Component<{message: string},{count: number}>{state={count: 0};render(){return(<divonClick={()=>this.increment(1)}>{this.props.message}{this.state.count}</div>);}increment=(amt: number)=>{// like thisthis.setState((state)=>({count: state.count+amt,}));};}View in the TypeScript Playground
Class Properties: If you need to declare class properties for later use, define them directly within the class body without an initial assignment:
classAppextendsReact.Component<{message: string;}>{pointer: number;// like thiscomponentDidMount(){this.pointer=3;}render(){return(<div>{this.props.message} and {this.pointer}</div>);}}View in the TypeScript Playground
Before you start using getDerivedStateFromProps, please go through the documentation and You Probably Don't Need Derived State. Derived State can be implemented using hooks which can also help set up memoization.
Here are a few ways in which you can annotate getDerivedStateFromProps
- If you have explicitly typed your derived state and want to make sure that the return value from
getDerivedStateFromPropsconforms to it.
classCompextendsReact.Component<Props,State>{staticgetDerivedStateFromProps(props: Props,state: State,): Partial<State>|null{//}}- When you want the function's return value to determine your state.
classCompextendsReact.Component<Props,ReturnType<(typeofComp)["getDerivedStateFromProps"]>>{staticgetDerivedStateFromProps(props: Props){}}- When you want derived state with other state fields and memoization
typeCustomValue=any;interfaceProps{propA: CustomValue;}interfaceDefinedState{otherStateField: string;}typeState=DefinedState&ReturnType<typeoftransformPropsToState>;functiontransformPropsToState(props: Props){return{savedPropA: props.propA,// save for memoizationderivedState: props.propA,};}classCompextendsReact.PureComponent<Props,State>{constructor(props: Props){super(props);this.state={otherStateField: "123",
...transformPropsToState(props),};}staticgetDerivedStateFromProps(props: Props,state: State){if(isEqual(props.propA,state.savedPropA))returnnull;returntransformPropsToState(props);}}View in the TypeScript Playground
As of React 19, defaultProps is no longer supported on function components. Use destructuring defaults directly in the parameter list — TypeScript will infer the prop as optional automatically:
typeGreetProps={age?: number};constGreet=({ age =21}: GreetProps)=>{// ...};If you prefer to declare defaults separately (for example, to share them across components), pull them into a constant and spread them when destructuring:
typeGreetProps={age?: number};constdefaultProps={age: 21}satisfiesGreetProps;constGreet=({ age =defaultProps.age}: GreetProps)=>{// ...};Setting
Greet.defaultProps = { age: 21 }will not work on function components in React 19 — the value is ignored at runtime andFunctionComponentno longer types it.
Class components still support static defaultProps. The recommended approach is to type the props with the defaulted keys as required, and let LibraryManagedAttributes (applied automatically by JSX) make them optional at the call site:
typeGreetProps={age: number;};classGreetextendsReact.Component<GreetProps>{staticdefaultProps={age: 21,};render(){return<div>Hello, I am {this.props.age}</div>;}}// Type-checks — `age` is optional at the call site thanks to defaultProps.constel=<Greet/>;React.JSX.LibraryManagedAttributes nuance for library authors
If you export GreetProps for consumers, age will appear required even though defaultProps makes it optional at the call site. GreetProps is the internal contract — there's a separate external contract that JSX computes via React.JSX.LibraryManagedAttributes. You can compute it explicitly:
// internal contract — don't exporttypeGreetProps={age: number;};classGreetextendsReact.Component<GreetProps>{staticdefaultProps={age: 21};}// external contractexporttypeApparentGreetProps=React.JSX.LibraryManagedAttributes<typeofGreet,GreetProps>;For most apps this isn't needed — only library authors who re-export the props type tend to hit it.
This is intended as a basic orientation and reference for React developers familiarizing with TypeScript.
A list of TypeScript types you will likely use in a React+TypeScript app:
typeAppProps={message: string;count: number;disabled: boolean;/** array of a type! */names: string[];/** string literals to specify exact string values, with a union type to join them together */status: "waiting"|"success";/** an object with known properties (but could have more at runtime) */obj: {id: string;title: string;};/** array of objects! (common) */objArr: {id: string;title: string;}[];/** any non-primitive value - can't access any properties (NOT COMMON but useful as placeholder) */obj2: object;/** an interface with no required properties - (NOT COMMON, except for things like `React.Component<{}, State>`) */obj3: {};/** a dict object with any number of properties of the same type */dict1: {[key: string]: MyTypeHere;};dict2: Record<string,MyTypeHere>;// equivalent to dict1/** function that doesn't take or return anything (VERY COMMON) */onClick: ()=>void;/** function with named prop (VERY COMMON) */onChange: (id: number)=>void;/** function type syntax that takes an event (VERY COMMON) */onChange: (event: React.ChangeEvent<HTMLInputElement>)=>void;/** alternative function type syntax that takes an event (VERY COMMON) */onClick(event: React.MouseEvent<HTMLButtonElement>): void;/** any function as long as you don't invoke it (not recommended) */onSomething: Function;/** an optional prop (VERY COMMON!) */optional?: OptionalType;/** when passing down the state setter function returned by `useState` to a child component. `number` is an example, swap out with whatever the type of your state */setState: React.Dispatch<React.SetStateAction<number>>;};object is a common source of misunderstanding in TypeScript. It does not mean "any object" but rather "any non-primitive type", which means it represents anything that is not number, bigint, string, boolean, symbol, null or undefined.
Typing "any non-primitive value" is most likely not something that you should do much in React, which means you will probably not use object much.
An empty interface, {} and Object all represent "any non-nullish value"—not "an empty object" as you might think. Using these types is a common source of misunderstanding and is not recommended.
interfaceAnyNonNullishValue{}// equivalent to `type AnyNonNullishValue = {}` or `type AnyNonNullishValue = Object`letvalue: AnyNonNullishValue;// these are all fine, but might not be expectedvalue=1;value="foo";value=()=>alert("foo");value={};value={foo: "bar"};// these are errorsvalue=undefined;value=null;Relevant for components that accept other React components as props.
exportdeclareinterfaceAppProps{children?: React.ReactNode;// best, accepts everything React can renderchildrenElement: React.JSX.Element;// A single React elementstyle?: React.CSSProperties;// to pass through style propsonChange?: React.FormEventHandler<HTMLInputElement>;// form events! the generic parameter is the type of event.target// more info: https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/patterns_by_usecase/#wrappingmirroringprops: Props&React.ComponentPropsWithoutRef<"button">;// to impersonate all the props of a button element and explicitly not forwarding its refprops2: Props&React.ComponentPropsWithRef<MyButtonWithForwardRef>;// to impersonate all the props of MyButtonForwardedRef and explicitly forwarding its ref}React.JSX.Element vs React.ReactNode?
Quote @ferdaber: A more technical explanation is that a valid React node is not the same thing as what is returned by React.createElement. Regardless of what a component ends up rendering, React.createElement always returns an object, which is the React.JSX.Element interface, but React.ReactNode is the set of all possible return values of a component.
React.JSX.Element-> Return value ofReact.createElementReact.ReactNode-> Return value of a component
More discussion: Where ReactNode does not overlap with React.JSX.Element
You can use either Types or Interfaces to type Props and State, so naturally the question arises - which do you use?
Use Interface until You Need Type - orta.
Here's a helpful rule of thumb:
always use
interfacefor public API's definition when authoring a library or 3rd party ambient type definitions, as this allows a consumer to extend them via declaration merging if some definitions are missing.consider using
typefor your React Component Props and State, for consistency and because it is more constrained.
You can read more about the reasoning behind this rule of thumb in Interface vs Type alias in TypeScript 2.7.
The TypeScript Handbook now also includes guidance on Differences Between Type Aliases and Interfaces.
Note: At scale, there are performance reasons to prefer interfaces (see official Microsoft notes on this) but take this with a grain of salt
Types are useful for union types (e.g. type MyType = TypeA | TypeB) whereas Interfaces are better for declaring dictionary shapes and then implementing or extending them.
It's a nuanced topic, don't get too hung up on it. Here's a handy table:
| Aspect | Type | Interface |
|---|---|---|
| Can describe functions | ✅ | ✅ |
| Can describe constructors | ✅ | ✅ |
| Can describe tuples | ✅ | ✅ |
| Interfaces can extend it | ✅ | |
| Classes can extend it | 🚫 | ✅ |
Classes can implement it (implements) | ✅ | |
| Can intersect another one of its kind | ✅ | |
| Can create a union with another one of its kind | ✅ | 🚫 |
| Can be used to create mapped types | ✅ | 🚫 |
| Can be mapped over with mapped types | ✅ | ✅ |
| Expands in error messages and logs | ✅ | 🚫 |
| Can be augmented | 🚫 | ✅ |
| Can be recursive | ✅ |
(source: Karol Majewski)
Before you start using getDerivedStateFromProps, please go through the documentation and You Probably Don't Need Derived State. Derived State can be easily achieved using hooks which can also help set up memoization easily.
Here are a few ways in which you can annotate getDerivedStateFromProps
- If you have explicitly typed your derived state and want to make sure that the return value from
getDerivedStateFromPropsconforms to it.
classCompextendsReact.Component<Props,State>{staticgetDerivedStateFromProps(props: Props,state: State,): Partial<State>|null{//}}- When you want the function's return value to determine your state.
classCompextendsReact.Component<Props,ReturnType<(typeofComp)["getDerivedStateFromProps"]>>{staticgetDerivedStateFromProps(props: Props){}}- When you want derived state with other state fields and memoization
typeCustomValue=any;interfaceProps{propA: CustomValue;}interfaceDefinedState{otherStateField: string;}typeState=DefinedState&ReturnType<typeoftransformPropsToState>;functiontransformPropsToState(props: Props){return{savedPropA: props.propA,// save for memoizationderivedState: props.propA,};}classCompextendsReact.PureComponent<Props,State>{constructor(props: Props){super(props);this.state={otherStateField: "123",
...transformPropsToState(props),};}staticgetDerivedStateFromProps(props: Props,state: State){if(isEqual(props.propA,state.savedPropA))returnnull;returntransformPropsToState(props);}}View in the TypeScript Playground
If performance is not an issue (and it usually isn't!), inlining handlers is easiest as you can just use type inference and contextual typing:
constel=(<buttononClick={(event)=>{/* event will be correctly typed automatically! */}}/>);But if you need to define your event handler separately, IDE tooling really comes in handy here, as the @type definitions come with a wealth of typing. Type what you are looking for and usually the autocomplete will help you out. Here is what it looks like for an onChange for a form event:
typeState={text: string;};classAppextendsReact.Component<Props,State>{state={text: "",};// typing on RIGHT hand side of =onChange=(e: React.FormEvent<HTMLInputElement>): void=>{this.setState({text: e.currentTarget.value});};render(){return(<div><inputtype="text"value={this.state.text}onChange={this.onChange}/></div>);}}View in the TypeScript Playground
Instead of typing the arguments and return values with React.FormEvent<> and void, you may alternatively apply types to the event handler itself (contributed by @TomasHubelbauer):
// typing on LEFT hand side of =
onChange: React.ChangeEventHandler<HTMLInputElement>=(e)=>{this.setState({text: e.currentTarget.value});};Why two ways to do the same thing?
The first method uses an inferred method signature (e: React.FormEvent<HTMLInputElement>): void and the second method enforces a type of the delegate provided by @types/react. So React.ChangeEventHandler<> is simply a "blessed" typing by @types/react, whereas you can think of the inferred method as more... artisanally hand-rolled. Either way it's a good pattern to know. See our Github PR for more.
Starting with React v19.2.10
FormEventandFormEventHandlerare deprecated and should be replaced withSubmitEventandSubmitEventHandler. The older event types will still work but trigger a deprecation message.
Typing onSubmit, with Uncontrolled components in a Form
If you don't quite care about the type of the event, you can just use React.SyntheticEvent. If your target form has custom named inputs that you'd like to access, you can use a type assertion:
<formref={formRef}onSubmit={(e: React.SyntheticEvent)=>{e.preventDefault();consttarget=e.targetastypeofe.target&{email: {value: string};password: {value: string};};constemail=target.email.value;// typechecks!constpassword=target.password.value;// typechecks!// etc...}}><div><label>
Email:
<inputtype="email"name="email"/></label></div><div><label>
Password:
<inputtype="password"name="password"/></label></div><div><inputtype="submit"value="Log in"/></div></form>View in the TypeScript Playground
Of course, if you're making any sort of significant form, you should use Formik or React Hook Form, which are written in TypeScript.
| Event Type | Description |
|---|---|
| AnimationEvent | CSS Animations. |
| ChangeEvent | Changing the value of <input>, <select> and <textarea> element. |
| ClipboardEvent | Using copy, paste and cut events. |
| CompositionEvent | Events that occur due to the user indirectly entering text (e.g. depending on Browser and PC setup, a popup window may appear with additional characters if you e.g. want to type Japanese on a US Keyboard) |
| DragEvent | Drag and drop interaction with a pointer device (e.g. mouse). |
| FocusEvent | Event that occurs when elements gets or loses focus. |
| FormEvent | Event that occurs whenever a form or form element gets/loses focus, a form element value is changed or the form is submitted. |
| InvalidEvent | Fired when validity restrictions of an input fails (e.g <input type="number" max="10"> and someone would insert number 20). |
| KeyboardEvent | User interaction with the keyboard. Each event describes a single key interaction. |
| InputEvent | Event that occurs before the value of <input>, <select> and <textarea> changes. |
| MouseEvent | Events that occur due to the user interacting with a pointing device (e.g. mouse) |
| PointerEvent | Events that occur due to user interaction with a variety pointing of devices such as mouse, pen/stylus, a touchscreen and which also supports multi-touch. Unless you develop for older browsers (IE10 or Safari 12), pointer events are recommended. Extends UIEvent. |
| TouchEvent | Events that occur due to the user interacting with a touch device. Extends UIEvent. |
| TransitionEvent | CSS Transition. Not fully browser supported. Extends UIEvent |
| UIEvent | Base Event for Mouse, Touch and Pointer events. |
| WheelEvent | Scrolling on a mouse wheel or similar input device. (Note: wheel event should not be confused with the scroll event) |
| SyntheticEvent | The base event for all above events. Should be used when unsure about event type |
Here's a basic example of creating a context containing the active theme.
import{createContext}from"react";typeThemeContextType="light"|"dark";constThemeContext=createContext<ThemeContextType>("light");Wrap the components that need the context by rendering the context itself as a provider. In React 19, the context object can be rendered directly — you no longer need <ThemeContext.Provider>:
import{useState}from"react";constApp=()=>{const[theme,setTheme]=useState<ThemeContextType>("light");return(<ThemeContextvalue={theme}><MyComponent/></ThemeContext>);};
<ThemeContext.Provider value={theme}>still works and is identical in behavior — it's just the legacy spelling.
Read the context with use:
import{use}from"react";constMyComponent=()=>{consttheme=use(ThemeContext);return<p>The current theme is {theme}.</p>;};
useContext(ThemeContext)still works too. The main difference is thatusecan also unwrap a promise, and it can be called inside conditions and loops.
If you don't have any meaningful default value, specify null:
import{createContext}from"react";interfaceCurrentUserContextType{username: string;}constCurrentUserContext=createContext<CurrentUserContextType|null>(null);constApp=()=>{const[currentUser,setCurrentUser]=useState<CurrentUserContextType>({username: "filiptammergard",});return(<CurrentUserContextvalue={currentUser}><MyComponent/></CurrentUserContext>);};Now that the type of the context can be null, you'll notice that you'll get a 'currentUser' is possibly 'null' TypeScript error if you try to access the username property. You can use optional chaining to access username:
import{use}from"react";constMyComponent=()=>{constcurrentUser=use(CurrentUserContext);return<p>Name: {currentUser?.username}.</p>;};However, it would be preferable to not have to check for null, since we know that the context won't be null. One way to do that is to provide a custom hook to use the context, where an error is thrown if the context is not provided:
import{createContext,use}from"react";interfaceCurrentUserContextType{username: string;}constCurrentUserContext=createContext<CurrentUserContextType|null>(null);constuseCurrentUser=()=>{constcurrentUserContext=use(CurrentUserContext);if(!currentUserContext){thrownewError("useCurrentUser has to be used within <CurrentUserContext>",);}returncurrentUserContext;};Using a runtime type check in this will have the benefit of printing a clear error message in the console when a provider is not wrapping the components properly. Now it's possible to access currentUser.username without checking for null:
constMyComponent=()=>{constcurrentUser=useCurrentUser();return<p>Username: {currentUser.username}.</p>;};Another way to avoid having to check for null is to use type assertion to tell TypeScript you know the context is not null:
import{use}from"react";constMyComponent=()=>{constcurrentUser=use(CurrentUserContext);return<p>Name: {currentUser!.username}.</p>;};Another option is to use an empty object as default value and cast it to the expected context type:
constCurrentUserContext=createContext<CurrentUserContextType>({}asCurrentUserContextType,);You can also use non-null assertion to get the same result:
constCurrentUserContext=createContext<CurrentUserContextType>(null!);When you don't know what to choose, prefer runtime checking and throwing over type asserting.
For useRef, check the Hooks section.
In React 19+, you can access ref directly as a prop in function components - no forwardRef wrapper needed.
Use ComponentPropsWithRef to inherit all props from a native element.
import{ComponentPropsWithRef,useRef}from"react";functionMyInput(props: ComponentPropsWithRef<"input">){return<input{...props}/>;}// Usage in parent componentfunctionParent(){constinputRef=useRef<HTMLInputElement>(null);return<MyInputref={inputRef}placeholder="Type here..."/>;}If you have custom props and want fine-grained control, you can explicitly type the ref:
import{Ref,useRef}from"react";interfaceMyInputProps{placeholder: string;ref: Ref<HTMLInputElement>;}functionMyInput(props: MyInputProps){return<input{...props}/>;}// Usage in parent componentfunctionParent(){constinputRef=useRef<HTMLInputElement>(null);return<MyInputref={inputRef}placeholder="Type here..."/>;}Read more: Wrapping/Mirroring a HTML Element
For React 18 and earlier, use forwardRef:
import{forwardRef,ReactNode}from"react";interfaceProps{children?: ReactNode;type: "submit"|"button";}exporttypeRef=HTMLButtonElement;exportconstFancyButton=forwardRef<Ref,Props>((props,ref)=>(<buttonref={ref}className="MyClassName"type={props.type}>{props.children}</button>));Side note: the ref you get from forwardRef is mutable so you can assign to it if needed.
This was done on purpose. You can make it immutable if you have to - assign React.Ref if you want to ensure nobody reassigns it:
import{forwardRef,ReactNode,Ref}from"react";interfaceProps{children?: ReactNode;type: "submit"|"button";}exportconstFancyButton=forwardRef((props: Props,ref: Ref<HTMLButtonElement>,// <-- explicit immutable ref type)=>(<buttonref={ref}className="MyClassName"type={props.type}>{props.children}</button>),);If you need to grab props from a component that forwards refs, use ComponentPropsWithRef.
createRef is mostly used for class components. Function components typically rely on useRef instead.
import{createRef,PureComponent}from"react";classCssThemeProviderextendsPureComponent<Props>{privaterootRef=createRef<HTMLDivElement>();render(){return<divref={this.rootRef}>{this.props.children}</div>;}}Generic components typically require manual ref handling since their generic nature prevents automatic type inference. Here are the main approaches:
Read more context in this article.
The most straightforward approach is to manually handle refs through props:
interfaceClickableListProps<T>{items: T[];onSelect: (item: T)=>void;mRef?: React.Ref<HTMLUListElement>|null;}exportfunctionClickableList<T>(props: ClickableListProps<T>){return(<ulref={props.mRef}>{props.items.map((item,i)=>(<likey={i}><buttononClick={()=>props.onSelect(item)}>Select</button>{item}</li>))}</ul>);}For true forwardRef behavior with generics, extend the module declaration:
// Redeclare forwardRef to support genericsdeclare module "react"{functionforwardRef<T,P={}>(render: (props: P,ref: React.Ref<T>)=>React.ReactElement|null,): (props: P&React.RefAttributes<T>)=>React.ReactElement|null;}// Now you can use forwardRef with generics normallyimport{forwardRef,ForwardedRef}from"react";interfaceClickableListProps<T>{items: T[];onSelect: (item: T)=>void;}functionClickableListInner<T>(props: ClickableListProps<T>,ref: ForwardedRef<HTMLUListElement>,){return(<ulref={ref}>{props.items.map((item,i)=>(<likey={i}><buttononClick={()=>props.onSelect(item)}>Select</button>{item}</li>))}</ul>);}exportconstClickableList=forwardRef(ClickableListInner);If you need both generic support and proper forwardRef behavior with full type inference, you can use the call signature:
// Add to your type definitions (e.g. in `index.d.ts` file)interfaceForwardRefWithGenericsextendsReact.FC<WithForwardRefProps<Option>>{<TextendsOption>(props: WithForwardRefProps<T>,): ReturnType<React.FC<WithForwardRefProps<T>>>;}exportconstClickableListWithForwardRef: ForwardRefWithGenerics=forwardRef(ClickableList);Credits: https://stackoverflow.com/a/73795494
:::note
Option 1 is usually sufficient and clearer. Use Option 2 when you specifically need forwardRef behavior. Use Option 3 for advanced library scenarios requiring both generics and full forwardRef type inference.
:::
Something to add? File an issue
Using ReactDOM.createPortal:
constmodalRoot=document.getElementById("modal-root")asHTMLElement;// assuming in your html file has a div with id 'modal-root';exportclassModalextendsReact.Component<{children?: React.ReactNode}>{el: HTMLElement=document.createElement("div");componentDidMount(){modalRoot.appendChild(this.el);}componentWillUnmount(){modalRoot.removeChild(this.el);}render(){returnReactDOM.createPortal(this.props.children,this.el);}}View in the TypeScript Playground
Using hooks
Same as above but using hooks
import{useEffect,useRef,ReactNode}from"react";import{createPortal}from"react-dom";constmodalRoot=document.querySelector("#modal-root")asHTMLElement;typeModalProps={children: ReactNode;};functionModal({ children }: ModalProps){// create div element only once using refconstelRef=useRef<HTMLDivElement|null>(null);if(!elRef.current)elRef.current=document.createElement("div");useEffect(()=>{constel=elRef.current!;// non-null assertion because it will never be nullmodalRoot.appendChild(el);return()=>{modalRoot.removeChild(el);};},[]);returncreatePortal(children,elRef.current);}Modal Component Usage Example:
import{useState}from"react";functionApp(){const[showModal,setShowModal]=useState(false);return(<div>
// you can also put this in your static html file
<divid="modal-root"></div>{showModal&&(<Modal><divstyle={{display: "grid",placeItems: "center",height: "100vh",width: "100vh",background: "rgba(0,0,0,0.1)",zIndex: 99,}}>
I'm a modal!{" "}<buttonstyle={{background: "papayawhip"}}onClick={()=>setShowModal(false)}>
close
</button></div></Modal>)}<buttononClick={()=>setShowModal(true)}>show Modal</button>
// rest of your app
</div>);}Context of Example
This example is based on the Event Bubbling Through Portal example of React docs.
React-error-boundary - is a lightweight package ready to use for this scenario with TS support built-in. This approach also lets you avoid class components that are not that popular anymore.
If you don't want to add a new npm package for this, you can also write your own ErrorBoundary component.
importReact,{Component,ErrorInfo,ReactNode}from"react";interfaceProps{children?: ReactNode;}interfaceState{
hasError: boolean;}classErrorBoundaryextendsComponent<Props,State>{publicstate: State={hasError: false};publicstaticgetDerivedStateFromError(_: Error): State{// Update state so the next render will show the fallback UI.return{hasError: true};}publiccomponentDidCatch(error: Error,errorInfo: ErrorInfo){console.error("Uncaught error:",error,errorInfo);}publicrender(){if(this.state.hasError){return<h1>Sorry.. there was an error</h1>;}returnthis.props.children;}}exportdefaultErrorBoundary;The Concurrent React APIs (Suspense, useTransition, useDeferredValue, startTransition, use) let you keep the UI responsive while React renders work in the background or waits for data. They're all stable as of React 18 and gained additional capabilities in React 19.
Suspense lets you declaratively show a fallback while a child component is waiting for something — typically data unwrapped with use(promise), a lazy component, or a streamed boundary on the server.
import{Suspense}from"react";constUserProfile=({ userPromise }: {userPromise: Promise<User>})=>{constuser=use(userPromise);return<p>Hello, {user.name}!</p>;};constApp=({ userPromise }: {userPromise: Promise<User>})=>(<Suspensefallback={<p>Loading...</p>}><UserProfileuserPromise={userPromise}/></Suspense>);SuspenseProps is typed as { children?: ReactNode; fallback?: ReactNode }. The fallback can be any ReactNode, including null.
use reads the value of a context or a promise. Unlike useContext, it can be called inside conditions and loops, and it integrates with Suspense for promises.
import{use}from"react";constComments=({
commentsPromise,}: {commentsPromise: Promise<Comment[]>;})=>{// Suspends until the promise resolves; throws to the nearest <Suspense>.constcomments=use(commentsPromise);return(<ul>{comments.map((c)=>(<likey={c.id}>{c.text}</li>))}</ul>);};The promise is typically created by a parent and passed down — don't create it inside the component, or you'll create a new promise on every render.
useTransition marks a state update as non-urgent so React can keep typing, scrolling, and other urgent input responsive while it renders.
import{useState,useTransition}from"react";constTabSwitcher=()=>{const[isPending,startTransition]=useTransition();const[tab,setTab]=useState<"posts"|"comments">("posts");constselectTab=(next: "posts"|"comments")=>{startTransition(()=>{setTab(next);});};return(<><buttondisabled={isPending}onClick={()=>selectTab("posts")}>
Posts
</button><buttondisabled={isPending}onClick={()=>selectTab("comments")}>
Comments
</button>{tab==="posts" ? <Posts/> : <Comments/>}</>);};In React 19, the function passed to startTransition can be async. This is the foundation for Actions and is how useActionState and <form action> schedule their pending state.
const[isPending,startTransition]=useTransition();constonSubmit=()=>{startTransition(async()=>{awaitsaveDraft(content);setSavedAt(newDate());});};isPending stays true for the entire duration of the async callback, including awaited work.
useDeferredValue lets you defer re-rendering a part of the UI that's expensive to compute, so urgent updates (typing into an input) can flush first.
import{useDeferredValue,useState}from"react";constSearchPage=()=>{const[query,setQuery]=useState("");constdeferredQuery=useDeferredValue(query);return(<><inputvalue={query}onChange={(e)=>setQuery(e.target.value)}/>{/* SearchResults re-renders with deferredQuery, lagging behind input */}<SearchResultsquery={deferredQuery}/></>);};React 19 added an optional second argument: the value to use during the initial render before the deferred value has caught up. Useful for SSR/streaming when you want to show a known initial value rather than the latest one.
constdeferredQuery=useDeferredValue(query,"");startTransition is also exported directly from react for use outside components — for example, inside event handlers in non-React code or third-party stores.
import{startTransition}from"react";store.subscribe(()=>{startTransition(()=>{forceRender();});});The standalone version does not provide an isPending flag — use the hook if you need that.
useActionState,useFormStatus,useOptimistic— built on top of transitions- Server Components and
'use server'
This project follows the all-contributors specification. See CONTRIBUTORS.md for the full list. Contributions of any kind welcome!
