DEV Community

Cover image for My React-TypeScript Cheat Sheet
Ido Shamun for daily.dev

Posted on • Originally published at daily.dev

My React-TypeScript Cheat Sheet

Ever since I started using TypeScript, I can't stop using it. Sometimes finding the correct type and where you should import it from can be a real headache. Especially when building a ReactJS application. This blog post is a great chance to publicly document my most used React TypeScript types. I focus on functional components and react hooks.
The structure of the article is that each paragraph is a standalone tip.

To create a React TypeScript project, we can use Create React App:

npx create-react-app my-app --template typescript

There have been lots of talks about the right way to import React. This is the most updated way to do it:

import React from 'react';

The return type of a functional component is ReactElement

import React, { ReactElement } from 'react';
const Component = (): ReactElement => {
  return <></>;
};

If you want to extend the props of a native HTML element, you can use the generic class HTMLAttributes. Let's say I want to create a new button:

import React, { HTMLAttributes } from 'react';

interface MyButtonProps extends HTMLAttributes<HTMLButtonElement> {
  ...
}

const MyButton = (props: MyButtonProps): ReactElement => {
  return <button {...props} />
}

Note that we use destructuring to forward the props to the button element.

The children prop is of type ReactNode.

React's events system uses its own types and not the native HTML events. Make sure to import the event from the react library. import { MouseEvent } from 'react'.

Pass the correct type to the useRef generic. If you want to create a ref to an input element:

import { useRef } from 'react';

const ref = useRef<HTMLInputElement | null>(null);

The ref.current type will automatically be HTMLInputElement.

The same goes for useState.

import { useState } from 'react';

const [myState, setMyState] = useState<boolean | null>(null);

If you provide an initial value in both cases, the type will be inferred implicitly.

When creating custom hooks make sure to explicitly set the returns type. Otherwise, TypeScript may infer incorrectly the types.

This is far from being a complete cheat sheet but rather documents the things I use the most. Check out this awesome cheat sheet for more information: https://github.com/typescript-cheatsheets/react.


Daily delivers the best programming news every new tab. We will rank hundreds of qualified sources for you so that you can hack the future.

Daily Poster

Latest comments (3)

Collapse
 
swyx profile image
swyx

thanks for the shoutout to the cheatsheet :)

Collapse
 
irvingarmenta profile image
Irving Armenta

I use the included FC type from React for Functional Components:

import React, { FC } from 'react'; 

// typing with the HTMLAttributes extension
type FunctionalCompType = { 
     id: string; 
// ..other stuff
} & HTMLAttributes<HTMLButtonElement> 

const FunctionalComp: FC<FunctionalCompType> = props => {
       const { children, id, ...buttonProps } = props;
       return <button {...buttonProps} >{children}</button>
};
Collapse
 
idoshamun profile image
Ido Shamun

That's nice! I didn't know about it.
But actually, I use strict lint rules so I must define the function argument type and return type.