/components/layouts/xxx/components/interfaces/xxx/components/ui/xxxto-be-cleaned folder into the respective folders as we refactorindex.tsx as an entry pointFor example:
components/ui
- SampleComponentA
- SampleComponentA.tsx
- SampleComponentA.constants.ts
- SampleComponentA.utils.ts
- SampleComponentA.types.ts
- index.ts
- SampleComponentB.tsx
```ts
// Declare the prop types of your component interface ComponentAProps { sampleProp: string }
// Name your component accordingly const ComponentA = ({ sampleProp }: ComponentAProps) => { return
export default ComponentA ```