https://react-typescript-cheatsheet.netlify.app/docs/basic/recommended/codebases/ Here you go. Answer from devdiary7 on reddit.com
๐ŸŒ
React
react.dev โ€บ learn โ€บ typescript
Using TypeScript โ€“ React
Note, that you cannot use TypeScript to describe that the children are a certain type of JSX elements, so you cannot use the type-system to describe a component which only accepts <li> children. You can see an example of both React.ReactNode and React.ReactElement with the type-checker in this TypeScript playground.
๐ŸŒ
Reddit
reddit.com โ€บ r/typescript โ€บ nicely written complex react typescript project as an example
r/typescript on Reddit: Nicely written complex React Typescript project as an example
February 25, 2021 -

Hello! I'm looking for a React app written in Typescript, ideally on GitHub, so that analyze and learn from it. Would be great if it was very well designed and written. I know there are many examples out there, but I need specifically something complex. I need to do a deep dive into that topic and reading other projects works best for me. Thanks!

๐ŸŒ
GitHub
github.com โ€บ tduyng โ€บ react-typescript-example
GitHub - tduyng/react-typescript-example: Template React Project using create-react-app & TypeScript ยท GitHub
Template React Project using create-react-app & TypeScript - tduyng/react-typescript-example
Starred by 52 users
Forked by 19 users
Languages ย  TypeScript 81.3% | SCSS 10.0% | HTML 6.6% | JavaScript 2.1%
๐ŸŒ
ThemeSelection
themeselection.com โ€บ home โ€บ blog โ€บ collections โ€บ 10+ inspirational react typescript example github
10+ Inspirational React Typescript Example GitHub
August 28, 2024 - After you start your journey and once you understand the concepts offered here you should personalize your code accordingly instead of being tied to the starter project. Setup Create React App with React Boilerplate. Highly scalable & Best DX & Performance-Focused & Best practices. ... Orbit-components is a React component library that provides developers with the easiest possible way of building Kiwi.comโ€™s products. This React Typescript example site shows you the ideal project structure, recommended libraries, as well as design pattern for writing a type-safe React + Redux app with TypeScript.
๐ŸŒ
GitHub
github.com โ€บ Lemoncode โ€บ react-typescript-samples
GitHub - Lemoncode/react-typescript-samples: The goal of this project is to provide a set of simple samples, providing and step by step guide to start working with React and Typescript. ยท GitHub
The goal of this project is to provide a set of simple samples, providing and step by step guide to start working with React and TypeScript. We have incorporated a set of examples based on hooks.
Starred by 1.9K users
Forked by 389 users
Languages ย  TypeScript 86.3% | JavaScript 10.5% | CSS 2.3% | HTML 0.9%
๐ŸŒ
LogRocket
blog.logrocket.com โ€บ home โ€บ how to use typescript with react: a tutorial with examples
How to use TypeScript with React: A tutorial with examples - LogRocket Blog
June 4, 2024 - Next, create a new src folder at the root level of your project directory. Inside this src folder, add a file and name it index.tsx. Then, add the following code: import * as React from "react"; import * as ReactDOM from "react-dom"; ReactDOM.render( <div> <h1>Hello, Welcome to React and TypeScript</h1> </div>, document.getElementById("root") );
๐ŸŒ
Reddit
reddit.com โ€บ r/frontend โ€บ great big react typescript projects?
r/Frontend on Reddit: Great big react typescript projects?
May 3, 2023 -

Hey,
i'm trying to find a large project to read and learn from.
Big projects are usually set up a bit different than smaller ones,

and I want to prepare myself for a larger one.
Do you guys have any suggestions for an open source project i could download?
my wishlist:

- React

- Typescript

- Good file and folder structure

- Follows common best practices and conventions

- Has typical patterns that are used in many big projects

๐ŸŒ
GitHub
github.com โ€บ microsoft โ€บ TypeScript-React-Starter
GitHub - microsoft/TypeScript-React-Starter: A starter template for TypeScript and React with a detailed README describing how to use the two together. ยท GitHub
November 16, 2023 - # Creates an app called my-app npx create-react-app my-app --typescript cd my-app # Adds the type definitions npm install --save typescript @types/node @types/react @types/react-dom @types/jest echo "Good to go :tada:" This repo offers some exmples on how to take that project into production and handle testing and state.
Starred by 11.1K users
Forked by 1.2K users
Languages ย  TypeScript 74.3% | HTML 16.4% | CSS 9.3%
Find elsewhere
๐ŸŒ
Hands on React
handsonreact.com โ€บ introduction
React Tutorial using TypeScript | Hands on React
Build a project management application step-by-step in React by following the directions below.
๐ŸŒ
GitHub
github.com โ€บ bezkoder โ€บ react-axios-typescript-example
GitHub - bezkoder/react-axios-typescript-example: Build React Typescript example Project - CRUD with Axios and make Web API call ยท GitHub
Build React Typescript example Project - CRUD with Axios and make Web API call - bezkoder/react-axios-typescript-example
Starred by 42 users
Forked by 39 users
Languages ย  TypeScript 88.3% | HTML 8.9% | CSS 2.8%
๐ŸŒ
Create React App
create-react-app.dev โ€บ docs โ€บ adding-typescript
Adding TypeScript | Create React App
TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. To start a new Create React App project with TypeScript, you can run:
๐ŸŒ
BezKoder
bezkoder.com โ€บ home โ€บ react typescript example project with axios and web api
React Typescript example Project with Axios and Web API - BezKoder
December 12, 2022 - In this tutorial, I will show you how to build a React Typescript example Project with Axios consume Web API, display and modify data with Router & Bootstrap.
๐ŸŒ
GeeksforGeeks
geeksforgeeks.org โ€บ typescript โ€บ how-to-use-react-with-typescript
How to use TypeScript with React? - GeeksforGeeks
Now, itโ€™s time to run your project ... the development server: ... Example 1: The below code is a basic implementation of TypeScript with react to show some text on output screen....
Published ย  August 18, 2025
๐ŸŒ
TypeScript
typescriptlang.org โ€บ docs โ€บ handbook โ€บ react.html
TypeScript: Documentation - React
TypeScript supports JSX and can correctly model the patterns used in React codebases like useState.
๐ŸŒ
freeCodeCamp
freecodecamp.org โ€บ news โ€บ how-to-code-your-react-app-with-typescript
How to Code Your React App with TypeScript
January 25, 2022 - In this course you will first learn the basics of TypeScript. Then you will learn how to integrate TypeScript in a React app by building an awesome project.
๐ŸŒ
DEV Community
dev.to โ€บ tienbku โ€บ react-typescript-example-project-with-axios-and-web-api-70k
React Typescript example Project with Axios and Web API - DEV Community
July 9, 2021 - In this tutorial, I will show you how to build a React Hooks CRUD Application to consume Web API with Axios, display and modify data with Router & Bootstrap.
๐ŸŒ
React TypeScript Cheatsheets
react-typescript-cheatsheet.netlify.app โ€บ codebases
Recommended React + TypeScript codebases to learn from | React TypeScript Cheatsheets
@jpavon/react-scripts-ts alternative react-scripts with all TypeScript features using ts-loader ยท webpack config tool is a visual tool for creating webpack projects with React and TypeScript