此为历史版本和 IPFS 入口查阅区,回到作品页
Makzan
IPFS 指纹 这是什么

作品指纹

ReactJS Functional Component Syntax in 1 minute

Makzan
·
·
Learn how to use const, object extraction, and single-line function to write a basic functional component in ReactJS. Part of the 1-minute Web Technologies video series.

Hey there, this is Thomas from Macao.

In this video, I’m going to explore the functional components of ReactJS.

Traditionally, we define a function like this. We have literally the function word, the name, the parameters, curly brackets, and then the lines of code inside the brackets scope.

We can reduce the code by minimizing the syntax usage. We can turn the function definition into const, function name, an object of attributes we need in properties as the parameters. The fat arrow syntax. Then if this is a simple component with one line of code, we don’t even need the curly brackets and the return wording.

But for better readability, I will wrap the code with a pair of parentheses.

That’s it for a basic functional component syntax.


CC BY-NC-ND 2.0 授权