React JS Tutorials for Beginners - 5 - Props

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

I give you props for making this video.

thegentleman
Автор

for React v16, use this:
var Movie = function(props){
return (
<div>
<h1>{props.title}</h1>
<h2>{props.discription}</h2>
</div>
)};

lxd
Автор

Incredible tutorial! Things are explained in detail and in logical order, easy to understand. Imagine just how many tutorials out there are comparable to this?? Not much I guess

itsamario
Автор

I thought I heard greeting wrong until I checked the comments haha :p

XeosIIII
Автор

ReactJS is something that I have always wanted. I haven't looked into Angular at all but the part about React where you can insert something between 2 HTML tags is a lot easier than in raw JS

AryanshMalviya
Автор

"alrighty mofos" .. did I hear that right? :|

MohammadMNajar
Автор

Funny that I just came by this. I learned how to code from your videos back when I was in middle school and now I’m a full time app developer. So uhh... thanks!

jeremyfrancis
Автор

Indeed, It is really awesome tutorials for beginners. Thank you so much for the wonderful tutorials Bucky.

drkhan
Автор

Fair Play Bucky - Thanks for all the Help. Best of Luck :)

brianquinn
Автор

thank you so much everything is more clear in my head now

nini-icis
Автор

Thanks for doing these tutorials Bucky. After watching the first five vids, I wanted to know what the benefit was of writing HTML in the React components etc. when you can just write the HTML without React and edit it if needed in jQuery? Am I missing something? Thanks

greggelias
Автор

very nice and perfect tutorial from professional programer thanks for this good things

loverphp
Автор

You forgot to mention you could use ES6 classes instead of React.createClass()

Eichro
Автор

Thanks so much for this. You have really helped me

vicsystems
Автор

wow..great tutorial...and easy understand for beginners..thanks dude.. :)

rajasekaranmurugesan
Автор

Just for anybody else who has troubled with the css portion make sure your css href is like this "../../css/main.css" That is, if you are following along with his package from Github.

calebwhite
Автор

Hey bucky, I'm making my way through, man react is way easier than I thought!. Hey, where's a good place to continue onto more intermediate react tuts?

samuelmontgomery
Автор

hi there and thanks man for the awesome series

i have a question, what is the difference between these react examples and the ones that will be creating by create-react-app [app-name] command ?
i am so new to react, and i watched another tutorial using the method mentioned above and will be so thankful if u help me find in out

kpopbests
Автор

How have you embedded the browser in ide?

PanoramicLens
Автор

Instead of hard coding title and genre names, can I use variable? I tried to use { myVariable } and it works, but when I update that variable UI does not change, how can I do that?

TheMitic