-
Notifications
You must be signed in to change notification settings - Fork 0
FrontEnd
asya982 edited this page Mar 14, 2023
·
19 revisions
- Using arrow functions for functional components;
- Props destructurization:
const Component = ({prop1, props2, prop3, ...props}) => {...};- We use Prettier to automatically format the code
{
"singleQuote": true,
"semi": false
}