Skip to content

FrontEnd

ira-bibik 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

Related links: