Feature structure
Feature ├── api │ ├── ... ├── assets │ ├── ... ├── some-modal │ ├── SomeModal.ts │ ├── index.ts │ ├── init.ts │ └── model.ts ├── other-modal │ ├── OtherModal.ts │ ├── index.ts │ ├── init.ts │ └── model.ts ├── stepper-modal │ ├── Step1Modal.ts │ ├── Step2Modal.ts │ ├── Step3Modal.ts │ ├── AllStepsModal.ts │ ├── StepModal.ts │ ├── some-function.ts │ ├── index.ts │ ├── init.ts │ └── model.ts ├── sub-feature1 │ ├── SubFeature.ts │ ├── index.ts │ ├── init.ts │ └── model.ts ├── sub-feature2 │ ├── SubFeature2.ts │ ├── SomeComponent.ts │ ├── index.ts │ ├── init.ts │ └── model.ts ├── other-sub-feature │ ├── SomeIcon.ts │ ├── OtherSubFeature.ts │ ├── index.ts │ ├── some-helper.ts │ ├── init.ts │ └── model.ts ├── constants.ts ├── Feature.ts ├── Modals.ts ├── Component1.ts ├── SomeComponent.ts ├── some-effect-handler.ts ├── index.ts ├── init.ts ├── model.ts └── readme.md
...