S
Size: a a a
S
VH
SB
src
├── App.tsx
├── features
│ ├── notifications
│ │ ├── api.ts
│ │ ├── components
│ │ │ ├── GroupForm
│ │ │ │ ├── GroupForm.const.ts
│ │ │ │ ├── GroupForm.tsx
│ │ │ │ ├── GroupForm.validator.ts
│ │ │ │ └── index.ts
│ │ ├── index.ts
│ │ └── types.ts
├── index.css
├── index.tsx
├── lib
│ ├── history.ts
├── routes.tsx
├── pages
│ ├── home
│ │ ├── HomePage.model.ts
│ │ ├── HomePage.tsx
│ │ └── index.ts
└── ui
├── components
│ ├── Button
│ │ ├── Button.css
│ │ └── Button.tsx
│ └── index.ts
└── templates
├── Content
│ ├── Content.css
│ └── Content.tsx
└── index.ts
ui/{components,templates} используются?EW
EW
SB
EW
SB
features/*/components от ui/components? (содержимое и нейминг)EW
EW
SB
EW
EW
EW
import { A as FeatureA } from '...'SB
EW
SB
EW
SB