Jun 8, 2021
little suggestion, it's the best to have a capitalized file name for component
and always keep index.js, but the component code still separated. index.js is used to import and export only
for ex:
Button Folder
- index.js
- Button.jsx
to import from Button:
`import Button from './Button'`
not
`import Button from './Button/Button'`