Code Review Checklist
1. Use only rem NOT pixel
We use 1rem = 16 px
Example:
font-size: 1rem
-- Correct
font-size: 16px
-- Wrong
2. Don't use spread (...) operator instead list all the props
3. Use the Pascal Case for the Component Names and for the Story Titles
e.g: Component File: MenuList.JSX
Story Title: title: 'Components/Atoms/MenuLists',
4. Do not use any third-party components directly in any component file instead create a Wrapper component. Flow the below naming convention
Naming convention
Please the refer Naming Conventions for more details.
5. Component File Should have an Comment that need to be shown on the Storybook 'Docs' tab
Do's: Write the component Description
Don'ts: Do not write @parms or @return in the comments section
NOTE: This list will be updated as and when required.