Kod standartlari
1. TypeScript asosida yozing
type Props = {
title: string;
};
const PageTitle: React.FC<Props> = ({ title }) => {
return <h1>{title}</h1>;
};const PageTitle = ({ title }: any) => {
return <h1>{title}</h1>;
};2. ESLint & Prettier
3. Fayl va Folder struktura (FSD)
4. UI komponentlar
5. Nomlash qoidalari
📝 Commit Formatlari
Prefix
Maqsadi
✅ Yodda tuting
Last updated