React Folder Structure Best Practices - For Large Projects

  Рет қаралды 99,807

PedroTech

PedroTech

Күн бұрын

Пікірлер: 157
@kovendanragupathi7632
@kovendanragupathi7632 2 жыл бұрын
@PedroTech, I really like your content on React since you are bringing production grade best practices. Please keep posting like these type of content Bro.
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Thank you!!
@nivethan_me
@nivethan_me 2 жыл бұрын
at 10:15 naming components as index.ts will cause confusion when you working with multiple components in vscode. all components title will says index.ts. how to overcome this issue? i personally tried barrels on index.ts i write something like export { default } from './Navbar'; then i create a new file called Navbar and write the component code there but this felt like a lot of work and lot of unnecessary files. any better idea?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Create a folder with the correct name, just import from the folder! You can also create file names that are specific and then create an index.ts file which imports and exports all the components. There is no right answer to this, it based on preference. I don't find it confusing, but I get why people might :)
@jhaeberli
@jhaeberli 3 ай бұрын
another related issue with just "index.ts" is when you have nested folders. VSC first list Owner folder name, then subFolder name with its files, and then files of the Owner folder, meaning you'll read index.tsx and index.tsx
@avaplain9505
@avaplain9505 2 жыл бұрын
im also adding .stories and .styles to a component folder. .stories is for storybook and styles for css, scss, css modules or styles components
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I put my styles either in the same component group or use reusable styles with something like styled-components!
@devkasunlakshitha
@devkasunlakshitha 2 жыл бұрын
What you using to mange state instead of Redux?
@VietLe-qi2lh
@VietLe-qi2lh 2 жыл бұрын
my current working project is using a folder structure like yours but it has many issue when it becomes huge. All team member agree to find other structure, which is easier to manage and work with it
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
What issues have ur team encountered? Ive used a similar structure in massive projects :)
@hsearch21
@hsearch21 Жыл бұрын
Would you not use a separate features folder? For example if you have a feature for creatingNotes, which you want to show on the dashboard page but also on the homepage. Wouldn't it be easier to have features/ creatingNotes. And then you can import creatingNotes to any page which needs it?
@beninip
@beninip 2 жыл бұрын
Hi PedroTech, I want to thank you for sharing this content to us. I'm wondering what's inside the common folder. You skipped it and you never went back on it.
@ryomaizen
@ryomaizen 2 жыл бұрын
x2
@GeovaneGC
@GeovaneGC Жыл бұрын
common folder is basically where you store components that you use in two or more pages
@GeovaneGC
@GeovaneGC Жыл бұрын
but you can also just name it like components
@moonandwine
@moonandwine Жыл бұрын
Pedro, onde está seu linkedin? está retornando erro na pagina pelo link na descrição
@nhutdev
@nhutdev Жыл бұрын
My rule of thumb is the longer and more descriptive the file name, the better. For files that export React components, I use PascalCase. For everything else, I use dash-case.
@starlord7526
@starlord7526 Жыл бұрын
don't use PascalCase, its a terrible practice
@fodetraore6666
@fodetraore6666 Жыл бұрын
​@@starlord7526states random opion based info. Refuses to elaborate.
@jorgeriveramx
@jorgeriveramx Жыл бұрын
What you came for starts at 4:10
@joaovictor-dl6ve
@joaovictor-dl6ve 2 жыл бұрын
Pedro, vc não usa css modules ou style-components ou algo do tipo? Vc utiliza um arquivo .css normal msm?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I either use Styled-Components or TailwindCSS. If I use styled components, I will usually have a folder just for UI common elements. (Falei em inglês pra a glr entender tbm kkkkkk)
@joaovictor-dl6ve
@joaovictor-dl6ve 2 жыл бұрын
@@PedroTechnologies kkkkkk boa!
@aleksandarpopovic3615
@aleksandarpopovic3615 2 жыл бұрын
i like index.ts but the problem is when you are looking for a specific file, I create a file with the appropriate name and re-export with index.ts
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I used to do that too! Both approaches are good!
@chrislye
@chrislye 2 жыл бұрын
Thanks for sharing this @PedroTech! I just have one question - how would you deal with a common component that is required by more than one page? Where would you put it?
@zidanegimiga
@zidanegimiga 2 жыл бұрын
Exactly!! But then again, folder structure is subjective to your project needs
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Inside the commons folder!
@PedroNovo93
@PedroNovo93 2 жыл бұрын
@PedroTech you missed the common folder, haven’t you?
@oziati533
@oziati533 2 жыл бұрын
Yepp, maybe something as a part 2 KZbin post 😅
@indrajithpatel5966
@indrajithpatel5966 2 жыл бұрын
i dont see an index.ts at your pages level. How do you combine these components inside your pages
@user-uw1rh4dg1y
@user-uw1rh4dg1y 2 жыл бұрын
Questions can come in⬆️.
@onça_pintuda999
@onça_pintuda999 Жыл бұрын
good question
@frankthedsigner558
@frankthedsigner558 2 жыл бұрын
Wow, great video! I always find myself lost when having to setup a new project the correct way and I've watched many of your older folder structure videos in the past. Though, as my project scales it always gets messy but this is an awesome approach of doing it right from the start. Thanks for your updated video, love your content! keep it up!
@hizokadarkwolf
@hizokadarkwolf Жыл бұрын
Thanks for the tips. The naming of files is always controversial, but organization is the most critical aspect. Insufficient naming and bad folder organization can be painful for the next developer working on a project... I learned that I had to rename and split the code into different files and folders in Angular. I will try this way, as I am just getting started on React.
@devproject8649
@devproject8649 2 жыл бұрын
I don't understand what you do when the path to the file is "../../". Do you use jsConfig to put the path? please answer me
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Absolute path!
@cbijay
@cbijay Жыл бұрын
Where would you like to put layout inside setup folder or common folder ?
@marcus4619
@marcus4619 2 жыл бұрын
could you recommend some great extensions, for instance the way your files/folders have great icons. I cam from webstorm and looking for similar functionality
@truceheat1671
@truceheat1671 2 жыл бұрын
You said you didn't use redux anymore . I am curious do you use just context only ?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I talk about what I do here: kzbin.info/www/bejne/qmq6no18o6ppfsk
@thesemicolon1971
@thesemicolon1971 2 жыл бұрын
I think you can't create complete using just .ts file because jsx will not work in ts. Correct me if i am wrong
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
In the video i mention that for components I use tsx and for just typescript files I use ts. But ts should work for writing components too!
@louaiboumedienne8276
@louaiboumedienne8276 Жыл бұрын
@PedroTech, u said ur not using redux that much anymore, so what are u using as a state management solution?
@MukeshKumar-um2wg
@MukeshKumar-um2wg 2 жыл бұрын
How do we manage shared components in this file structure?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
You can put it inside of the commons, or possibly have a "features" folder where you can add specific feature logic that is shared!
@diegounanue
@diegounanue 2 жыл бұрын
You said that you don’t use redux that much today. What state manager do you use?
@marcus4619
@marcus4619 2 жыл бұрын
wont the test failure stack trace say index.test.ts and be confusing?
@sujikumarts7470
@sujikumarts7470 2 жыл бұрын
Can we get the git hub location for a sample project with this directory structure , redux & graphql?
@alexdefaro
@alexdefaro 2 жыл бұрын
Don't you think this is over engineering what should be a simple SPA structure?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
This video is meant to be for large projects, and imo SPA is messy for large projects. It doesn’t scale well
@alexdefaro
@alexdefaro 2 жыл бұрын
@@PedroTechnologies Thanks... Not sure If I would use React or any SPA framework for large (multipage) projects. You videos are great btw.
@rijogeorge5547
@rijogeorge5547 2 жыл бұрын
What if there is a component which shared by different pages in the app ?
@easonhuang4031
@easonhuang4031 2 жыл бұрын
if all components file called index.tsx, if I open many files, there will be a lot of index.tsx on the right side, wouldn't this cause confusion?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I don’t find it confusing because i can see the folder name
@ponderatulify
@ponderatulify 2 жыл бұрын
How do you do if you have posts and comments on the same page?
@cdey3886
@cdey3886 2 жыл бұрын
very useful content, thank you. Just and off topic question though, how'd you make the background animation?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Thank you!! I used canva
@alok9337
@alok9337 2 жыл бұрын
how can i good in frontend development . because when I creating project on my own my mind don't think how to do that . what should I do to improve my self.
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Time and practice is the answer. You don't need to worry about this if you are a beginner. Also, working a job in the industry can help a lot!
@alok9337
@alok9337 2 жыл бұрын
@@PedroTechnologies thanks bro
@alok9337
@alok9337 2 жыл бұрын
Your content is lot help me understand things.
@Aliena92
@Aliena92 Жыл бұрын
What do you use instead of Redux then?
@thecodingchallengeshow
@thecodingchallengeshow Жыл бұрын
do big companies like facebook use this pattern and what am i supposed to do with react routing?
@ThColinPereira
@ThColinPereira 2 жыл бұрын
This is such an amazing video
@rajarock454
@rajarock454 2 жыл бұрын
great ! which font you are using it's look pretty kindly let me know also with theme name.
@i-am-the-slime
@i-am-the-slime 2 жыл бұрын
Isn't having one folder called "images" and one "svg" pretty ugly? Why not "png", "jpg", "svg" or "raster-images" and "vector-images". Or do you also have svg files in the images folder?
@SecretEyeSpot
@SecretEyeSpot 2 жыл бұрын
Hey Pedro. What's the actual name of the repository for this video? I'm trying to understand what you're Common folder is and how you use it.
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
The commons folder is just filled with components that can be reused between multiple pages. Ex: search bar…
@ademolaakindotuni5896
@ademolaakindotuni5896 2 жыл бұрын
This is awesome. I couldn't find the link to the GitHub repo in the description, do you mind sharing it here?
@baya8093
@baya8093 2 жыл бұрын
Hello Pedro, thanks for making this useful content. During the video you said you're not using Redux a lot, and I wonder which state management system you're using. Which one will be better?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I go over what I use here: kzbin.info/www/bejne/qmq6no18o6ppfsk
@butterfly7562
@butterfly7562 2 жыл бұрын
context, or lib such as zustand,jotai
@louislecouturier
@louislecouturier 2 жыл бұрын
Thanks a lot Pedro ! What do you put in the common folder ?
@louislecouturier
@louislecouturier 2 жыл бұрын
And what about css modules, do you name them "index" or the same name as the folder ?
@newbiedevtons
@newbiedevtons 2 жыл бұрын
Hi, Pedro. Can I ask you something? If i want to build real word react js app then should I buy a reactjs courses? Thank you so much for your tutorial video
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
You don't need to buy a course in order to be good at building real world apps. I never bought a course in my life (although i sell one). It depends on the person, some people prefer to pay for courses because it holds them accountable.
@newbiedevtons
@newbiedevtons 2 жыл бұрын
@@PedroTechnologies This reply inspired me more. Thanks a lot!
@dat-ta
@dat-ta 2 жыл бұрын
Hi, you guys have any idea for Next.js Folder Structure?
@OgamerRato
@OgamerRato 2 жыл бұрын
I really want to thank you. I have been watching your vids and learning a loot. Not only that, but I just release my first project for a company a couple of weeks ago and didn't like the final result in a lot of aspects. Then a got into your channel and learned a loot, and it is making me a better programmer and helping me a loot at work. For that, really thanks man
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Nice work! Glad u were able to learn from my channel :)
@rychei5393
@rychei5393 Жыл бұрын
Skip the fluff to 3:20
@AyomiposiAborisade-yu5is
@AyomiposiAborisade-yu5is Жыл бұрын
How to get the images properly, without importing it individually And how to get absolute path of any file
@licriss
@licriss 2 жыл бұрын
I absolutely hate the term "best practices" since thinking the best has been discovered/established is a unneccessarily limiting mindset, but this is definitely a very good structure for UI projects larger than a couple of pages
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I put it cause it has a bigger impact hahaha but like i said, there is no definitive best practice
@mumk
@mumk 2 жыл бұрын
where is your index.tsx for each page
@dobrilbojilov8184
@dobrilbojilov8184 2 жыл бұрын
Yep i want to know this also. Where is starting point for every page? I didn't saw index.tsx in root post page folder for example.
@TricoliciSerghei
@TricoliciSerghei Жыл бұрын
Thanks for the video.. Didn't find the link to the repository on github though, also checked on github, haven't seen it, maybe it has a different name?
@ep11-o7s
@ep11-o7s 2 жыл бұрын
I appreciate you making this video, as folder structure, granted, has caused me to pull my hair as our app is scaling. However, I do want to point out that there are some hooks that can be used globally and shouldn't be grouped under a specific page, is it ideal to create a "hooks" folder in the "src" parent folder?
@user-uw1rh4dg1y
@user-uw1rh4dg1y 2 жыл бұрын
Questions can come in⬆️.
@joaovitor8485
@joaovitor8485 2 жыл бұрын
You can place your hook in the "commons" folder, like "commons > hooks", the same can be used to components, interfaces, functions, etc
@haina3052
@haina3052 2 жыл бұрын
So, for each page you have a folder. Where do you put your layout component like ? What about a button component that is gonna be used in different pages? You duplicate them everywhere?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
You put those in the commons folder. So the commons folder structure would look like: /commons/components/footer/index.ts
@khursheedalam3057
@khursheedalam3057 2 жыл бұрын
Loved it. I use the almost same folder structure. Few things I add in my project. For every component I have subcomponents.ts file in which I made styling for particular components. Create helpers.ts file for global helping functions.
@Joseph-do9ue
@Joseph-do9ue 2 жыл бұрын
Please make a tutorial for typescript for beginers
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I have a couple of them: kzbin.info/aero/PLpPqplz6dKxW1LdiHpJMyC5bzuzGxKlFm
@김경한-x8h
@김경한-x8h 2 жыл бұрын
thank you for your video. I'm always enjoying your video and I have a question what's "common" folders for? and also models.ts in component folder?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Common components / files that can exist in many different parts of the project!
@김경한-x8h
@김경한-x8h 2 жыл бұрын
@@PedroTechnologies oh thank you, and can I ask you one more thing? you seem to have file name as "index.ts" at every component. but as I know component's name has to start Uppercase like Component.tsx. then is it not component file that index.ts? then what is in "index.ts"?
@alex_blue5802
@alex_blue5802 Жыл бұрын
Personally I find it confusing to have multiple index.tsx files open and being unable to tell at a glance which components they are associated with. I do see how it gives the code a nice clean feel, though.
@ronifintech9434
@ronifintech9434 Жыл бұрын
love the structure! can you please share the github repo name?
@hardwired66
@hardwired66 2 жыл бұрын
Thank you, need more typescript content
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Working on it!
@GabrielMartinez-ez9ue
@GabrielMartinez-ez9ue 2 жыл бұрын
Y yo buscando este material! Finalmente! Thanks man
@edetmmekut809
@edetmmekut809 2 жыл бұрын
yeah i prefer the absolute path in importing.And i notice u did not mention about reusable components like buttons,breadcrump,loader etc .For i do have a customised folder for reusable components
@aninditpanigrahi3334
@aninditpanigrahi3334 2 жыл бұрын
I think he keeps all those in the folder named "common"
@ricko13
@ricko13 2 жыл бұрын
You're killing it Pedro 🔥 keep it goin' 💯
@lmisrealkmilk6623
@lmisrealkmilk6623 2 жыл бұрын
Where is your UBC cs video?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I privated it bc im not a CS student anymore lmaoo i switched to math!
@lmisrealkmilk6623
@lmisrealkmilk6623 2 жыл бұрын
@@PedroTechnologies can you make a vid on why you switched?
@renatolins4670
@renatolins4670 2 жыл бұрын
Nice tutorial Pedro, I really liked it. I was just wondering if checking git/diff results involving component files, wouldn't be a bit harder in some situations or another as they are all named as 'index'. Anyway, thanks for sharing your knowledge man
@juanbosnic
@juanbosnic Жыл бұрын
That could happen. I imagine you can give the component file a proper name and then in its "index" file just have its "default export".
@malletdevoted
@malletdevoted 2 жыл бұрын
Such a nice video, thanks for sharing.
@ТёмаКоролёв-к6ф
@ТёмаКоролёв-к6ф 2 жыл бұрын
1. Ты забыл про service, где должна хранится бизнес логика приложения, а не библиотеки/фреймворка. 2. Папка componenst я считаю лишней, если pages уже подразумевает что это компоненты зачем там создавать еще одну папку с компонентами?
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Pages are the routes, components are specific components that are used in the pages. Usually pages turn out to be very big, so separating parts of it into components make ur code more organized. Also, components should be separated in a way such that they are not very smart, each component should have their own purpose.
@ТёмаКоролёв-к6ф
@ТёмаКоролёв-к6ф 2 жыл бұрын
​@@PedroTechnologies /components/ [page](comments)/List/index.jsx [page](comments)/List/List.container.jsx [page](comments)/Comment.service.js [page](comments)/Comment.repository.js header/index.jsx (global component) footer/index.jsx (global componen)
@peladno
@peladno 2 жыл бұрын
I'm learing programming so I was looking for a video like this. Thank you a lot :), especially because I have only one folder and are a lot of files and is a bit confusing heheheh
@edetmmekut809
@edetmmekut809 2 жыл бұрын
I can't joint your discord channel via the above link ,can u please resend me the lastest link
@user-uw1rh4dg1y
@user-uw1rh4dg1y 2 жыл бұрын
Questions can come in⬆️.
@keenanjet7879
@keenanjet7879 2 жыл бұрын
I Heard in one of your previous videos that your always looking for content Idea, Id love to see a deep dive on The Graph since you GraphQL vids are awesome
@alii2284
@alii2284 5 ай бұрын
dude you didn't talk about the "common" folder
@oziati533
@oziati533 2 жыл бұрын
Hi from Sweden 🇸🇪 😊 Love your videos and how you think in react, thanks for sharing!
@jokerbanny
@jokerbanny 2 жыл бұрын
Thank you bro!
@김경한-x8h
@김경한-x8h 2 жыл бұрын
shit... I love you. you always give me what I want
@aymenbachiri-yh2hd
@aymenbachiri-yh2hd 6 ай бұрын
Thank you so much
@iakuraa
@iakuraa 2 жыл бұрын
Thanks.
@RW-he5fu
@RW-he5fu 11 ай бұрын
nice video!
@BREXCool3
@BREXCool3 2 жыл бұрын
thankyou for sharing
@filipevalentegomes2383
@filipevalentegomes2383 2 жыл бұрын
Regarding typescript, I would only use it in big projects or if you work with a big team. Reason being, if you are not super comfortable with typescript, you’ll waste way too much time figuring out, what and how to include types or interfaces. You basically have to code almost twice as much when you use typescript. You can get lost and lose focus on what you are actually trying to build. It has a lot of advantages, but only if you are really comfortable, otherwise you are just giving yourself more work
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
I understand your point, and I used to say the same. However I keep getting more inclined in using TS for all use cases. The reason being that the moment you get used to TS, it will not require that much extra work. Tbh the point of ts is to prevent bugs, a JS project will never be as safe as a TS project.
@filipevalentegomes2383
@filipevalentegomes2383 2 жыл бұрын
@@PedroTechnologies 100% that’s why I said unless you are comfortable with it. I think it’s best to use it in personal projects at first to get used to it. Once you are comfortable with it, it actually makes it easier for testing later on.
@chizuru1999
@chizuru1999 2 жыл бұрын
I would like a video on state management of react. What to use for enterprise grade applications? Thanks. I am familiar with Angular and just can't get head over the mess of a framework react is.
@chizuru1999
@chizuru1999 2 жыл бұрын
Also the way it is going ahead it feels like react will just become angular with all these features... 😂😂 Later all you know they might even add a react cli.
@nurlanmehdiyev7428
@nurlanmehdiyev7428 2 жыл бұрын
Thank you
@SirXtC
@SirXtC 2 жыл бұрын
awesome video. maybe im just neckpicking...but saying "I'm back here with another video" its just very redundant in a way... since this is youtube lol.
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Hahahaha im just used to it!
@KRaven950
@KRaven950 2 жыл бұрын
That is definitely not a folder structure for large projects. Maybe for medium ones
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
This is the folder structure for one of the biggest tech companies in the world.
@onça_pintuda999
@onça_pintuda999 Жыл бұрын
@@PedroTechnologies Could you name a few?
@inelusjudelin4635
@inelusjudelin4635 2 жыл бұрын
🙌 Thanks
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
You're welcome 😊
@dailymeow3283
@dailymeow3283 2 жыл бұрын
Just use next js, it is structured
@azizbakirov5301
@azizbakirov5301 Жыл бұрын
thanks bro
@whonayem01
@whonayem01 2 жыл бұрын
Thanks
@codetheworld6721
@codetheworld6721 Жыл бұрын
Thankyou..
@DuyTran-ss4lu
@DuyTran-ss4lu 2 жыл бұрын
Awesome
@johnddonnet5151
@johnddonnet5151 2 жыл бұрын
You didn't even open commons folder
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
It should be filled with common components
@johnddonnet5151
@johnddonnet5151 2 жыл бұрын
@@PedroTechnologies Oh ok, so like button, input, etc
@ChinhNguyen-ye7nv
@ChinhNguyen-ye7nv Жыл бұрын
great
@augischadiegils.5109
@augischadiegils.5109 2 жыл бұрын
❤️❤️
@Pareshbpatel
@Pareshbpatel 2 жыл бұрын
A very useful tutorial on Folder Structure for React Apps. Thanks, Pedro {2022-06-08},{2022-06-29}
@PedroTechnologies
@PedroTechnologies 2 жыл бұрын
Glad it was helpful!
@MasharipovSaidbek
@MasharipovSaidbek 2 жыл бұрын
GL
This Folder Structure Makes Me 100% More Productive
24:36
Web Dev Simplified
Рет қаралды 110 М.
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 108 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
All The JavaScript You Need To Know For React
28:00
PedroTech
Рет қаралды 670 М.
All 17 React Best Practices (IMPORTANT!)
1:46:11
ByteGrad
Рет қаралды 215 М.
The Complete Guide to Folder Structures in React
25:23
Cosden Solutions
Рет қаралды 12 М.
Junior vs Senior React Folder Structure - How To Organize React Projects
16:16
Un-Suck Your React Components - Composable & Compound Components
15:47
Learn React With This ONE Project
1:39:30
Tech With Tim
Рет қаралды 31 М.
The Most Important Design Pattern in React
35:04
Cosden Solutions
Рет қаралды 115 М.
4 React Best Practices That Will Make You A PRO
18:12
PedroTech
Рет қаралды 146 М.