Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 339 Bytes

checklist.md

File metadata and controls

24 lines (15 loc) · 339 Bytes
  1. [CODE STYLE] - Don't overuse empty lines between components.

BAD EXAMPLE:

<A />


<B />



<C />

GOOD EXAMPLE:

<A />
<B />
<C />
  1. [PROJECT STRUCTURE] - create separate folder per component, where you could put all files(styles, components, and so on)
  2. [GIT KNOWLEDGE] - check if you added ALL your files to git.