Best Practices for Writing Clean React Code with Examples
React Naming Conventions:
Component Naming Conventions:
Use PascalCase for react component names, Interfaces & Types:
const ColumnSelectorPropsType = { heading: string };
const ColumnSelector = ({ heading }: ColumnSelectorPropsType) => {
return <...
vishesh-tiwari-dev.hashnode.dev5 min read