Skip to content

FrontEnd

asya982 edited this page Mar 14, 2023 · 19 revisions

Required libraries

Code styling

  1. Using arrow functions for functional components;
  2. Props destructurization:
const Component = ({prop1, props2, prop3, ...props}) => {...};
  1. We use Prettier to automatically format the code
{
  "singleQuote": true,
  "semi": false
}

Related links: