TypeScript Course In ReactJS - TypeScript

preview_player
Показать описание
In this video I will go over everything I thing a beginner should learn on how to use Typescript in React.

-
❤️ Want to Support the Channel?:
-

Social
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

Tags:
- ReactJS Tutorial
- ReactJS and MySQL
- NodeJS Tutorial
- API Tutorial

Timestamps
00:00 | Setup Typescript in React
10:05 | Components / Props / Interfaces
20:17 | UseState in Typescript
25:45 | Enums / Types
32:49 | Context API Typescript
37:42 | What to do when you panic?
40:25 | Folder Structure
Рекомендации по теме
Комментарии
Автор

I was learning typescript. And was thinking now i have to find a tutorial for typescript with reactjs. But this man reads our mind. He said no problem i have read your mind here comes the video. Just superb quality content 💓

muaazosaid
Автор

21 minute into the video and i can say that it is a very good tutorial. I'm learning this to implement on my next app to put in my portfolio. Hiring process is tough right now. Who else is in the process of making a large app just to land a job???

nable
Автор

Dude, I was learning typescript and all of a sudden this video pops up on my favourite youtube channel🤯

shahidrizwan
Автор

The best tutorials for any aspiring software engineers and web developers.

levyroth
Автор

Trying to refactor a project into TypeScript and this hit all the points with speed, thank you!

Diegopie
Автор

this is one of ur better tutorials, unlike other utubers u actually show the proper way to write props and show us how to work with enums and types which was useful to me, thx

ts
Автор

Your literally the best person to learn from on Youtube, You simplify concepts so easily, that one can watch u and start coding immediately, the simplicity of ur teachings is what i find outstanding, simple but effective code .. keep it up ❤❤❤

ogheneminesmart
Автор

just bear in mind guys this tutorial is year old and using FC is not recommended anymore. Other than that great tutorial and love way you explain things. Thanks for what you do

pawelczar
Автор

Honestly the best tutorial for typescript. Thank you!

joeellul-turner
Автор

can you make 1-2 typescript projects for beginners? thanks for the video!

bananabread
Автор

Foi quando falou o nome que eu percebi que era br hahaha pronúncia perfeita e video mais perfeito ainda! Muito obrigada!!!

monicabusatta
Автор

very clear description of the difference between typescipt and raw JS in constructing REACT components.

Raxxman
Автор

Great tutorial to cover all the basics!! Now I can understand the type declarations and those react code written in typescript looks less intimidating.

wendylee
Автор

And there is one more thing

If you create a functional component using a traditional method like this



import {FC} from 'react';

export interface PersonProps{
}


// Here you can't use FC on a function.

export function Person(props: PersonProps) {
return (
<div>

</div>
);
}



In order to use FC type provided by react you have to the use Arrow function.

import {FC} from 'react';


interface PersonProps {
name:string,
email?:string,
age:number,

}

export const Person:FC<PersonProps>= ({name, age}) =>{
return (
<>
<div>
<h1>{name}</h1>
<h1>{age}</h1>
</div>
</>
);
}

maxvhanamane
Автор

Eu gostaria de agradecer imensamente pelo conteúdo que você produz, sua didática é muito boa e vai direto ao ponto em seus vídeos. Continue contribuindo assim que você vai longe

vitorhugo
Автор

That was an easy flow in learning through your video. My knowledge has increased. Specially I loved it when you organized the code into files.

mabrarhassan
Автор

Straight forward Tutorial. I just love it. Thank you Pedro for accelerating my learning curve with this video

gtsif
Автор

Oh wow dude, I have a technical test for a job interview that relies on TypeScript and createContext, while I've only worked with React/Redux so far, this is exactly what I needed to be able to do it, thank you so much <3

sonjiaasana
Автор

Thanks a lot for the video Pedro!!! Waiting for more Typescript projects from you!

kk
Автор

Bro, Thank you. :) I have a new job. ( Medior React developer ) and the company is using typescript. I've been watch many tutorials. But finally i understand the concepts of typescript. ( Thanks to many tuto and the effort ).

hassanad