Skip to content

Commit

Permalink
enhance(frontend): updated folder structure to have common / ee folders
Browse files Browse the repository at this point in the history
  • Loading branch information
ardaerzin committed Dec 9, 2024
1 parent 4398434 commit f59cdbf
Showing 1 changed file with 119 additions and 54 deletions.
173 changes: 119 additions & 54 deletions agenta-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,71 +44,136 @@ Below is the folder structure of the `./agenta-web/src` directory:

```text
agenta-web/src
├── assets
│ ├── constants.ts
│ ├── utils.ts
│ ├── UIElement1.tsx
├── components
│ ├── Component1
│ │ ├── assets
│ │ │ ├── constants.ts
│ │ │ ├── utils.ts
│ │ │ ├── Component1UIElement.tsx
├── Common
│ ├── assets
│ │ ├── constants.ts
│ │ ├── utils.ts
│ │ ├── UIElement1.tsx
│ ├── components
│ │ ├── Component1
│ │ │ ├── assets
│ │ │ │ ├── constants.ts
│ │ │ │ ├── utils.ts
│ │ │ │ ├── Component1UIElement.tsx
│ │ │ ├── hooks
│ │ │ │ ├── useComponent1Hook.ts
│ │ │ │ ├── types.d.ts
│ │ ├── Component.tsx
│ ├── hooks
│ │ ├── useComponent1Hook.ts
│ │ ├── types.d.ts
├── hooks
│ ├── useSharedHook1.ts
│ ├── useSharedHook2.ts
├── pages
│ ├── Home
│ ├── About
│ ├── Contact
├── utils
├── store
│ ├── atoms
│ │ ├── globalAtoms.ts
│ ├── context
│ │ ├── GlobalContext.tsx
├── modules
│ ├── Module1
│ │ ├── assets
│ │ │ ├── constants.ts
│ │ │ ├── Module1UIElement.tsx
│ │ ├── store
│ │ │ ├── atoms
│ │ │ │ ├── moduleAtoms.ts
│ │ ├── useSharedHook1.ts
│ │ ├── useSharedHook2.ts
│ ├── pages
│ │ ├── Home
│ │ ├── About
│ │ ├── Contact
│ ├── utils
│ ├── store
│ │ ├── atoms
│ │ │ ├── globalAtoms.ts
│ │ ├── context
│ │ │ ├── GlobalContext.tsx
│ ├── modules
│ │ ├── Module1
│ │ │ ├── assets
│ │ │ │ ├── constants.ts
│ │ │ │ ├── Module1UIElement.tsx
│ │ │ ├── store
│ │ │ │ ├── atoms
│ │ │ │ │ ├── moduleAtoms.ts
│ │ │ ├── context
│ │ │ │ ├── ModuleContext.tsx
│ ├── components
│ │ │ ├── ModuleComponent1
│ │ │ │ ├── assets
│ │ │ │ │ ├── constants.ts
│ │ │ │ │ ├── utils.ts
│ │ │ │ │ ├── ModuleComponent1UIElement.tsx
│ │ │ │ ├── Component.tsx
│ │ │ │ ├── hooks
│ │ │ │ │ ├── useModuleComponent1Hook.ts
│ │ │ │ │ ├── types.d.ts
│ │ │ ├── ModuleComponent2.tsx
│ │ ├── hooks
│ │ │ ├── components
│ │ │ │ ├── ModuleComponent1
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── constants.ts
│ │ │ │ │ │ ├── utils.ts
│ │ │ │ │ │ ├── ModuleComponent1UIElement.tsx
│ │ │ │ │ ├── Component.tsx
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useModuleComponent1Hook.ts
│ │ │ │ │ │ ├── types.d.ts
│ │ │ │ ├── ModuleComponent2.tsx
│ │ │ ├── hooks
│ │ │ │ ├── useModuleHook1.ts
│ │ │ │ ├── useModuleHook2.ts
│ │ │ ├── Module.tsx
│ │ │ ├── types.d.ts
│ │ ├── Module2
│ │ │ ├── assets
│ │ │ │ ├── constants.ts
│ │ │ │ ├── utils.ts
│ │ │ │ ├── Module2UIElement.tsx
│ │ ├── components
│ │ │ ├── ModuleComponent1.tsx
│ ├── hooks
│ │ │ ├── useModuleHook1.ts
│ │ │ ├── useModuleHook2.ts
│ │ ├── Module.tsx
│ │ ├── types.d.ts
│ ├── Module2
│ │ ├── assets
│ │ │ ├── constants.ts
│ │ │ ├── utils.ts
│ │ │ ├── Module2UIElement.tsx
│ ├── Module.tsx
│ ├── types.d.ts
│ └── global.d.ts
├── EE
│ ├── assets
│ │ ├── constants.ts
│ │ ├── utils.ts
│ │ ├── UIElement1.tsx
│ ├── components
│ │ ├── Component1
│ │ │ ├── assets
│ │ │ │ ├── constants.ts
│ │ │ │ ├── utils.ts
│ │ │ │ ├── Component1UIElement.tsx
│ │ │ ├── hooks
│ │ │ │ ├── useComponent1Hook.ts
│ │ │ │ ├── types.d.ts
│ │ ├── Component.tsx
│ ├── hooks
│ │ ├── useSharedHook1.ts
│ │ ├── useSharedHook2.ts
│ ├── pages
│ │ ├── EEPage
│ ├── utils
│ ├── store
│ │ ├── atoms
│ │ │ ├── eeAtoms.ts
│ │ ├── context
│ │ │ ├── EEContext.tsx
│ ├── modules
│ │ ├── Module1
│ │ │ ├── assets
│ │ │ │ ├── constants.ts
│ │ │ │ ├── Module1UIElement.tsx
│ │ │ ├── store
│ │ │ │ ├── atoms
│ │ │ │ │ ├── moduleAtoms.ts
│ │ │ ├── context
│ │ │ │ ├── ModuleContext.tsx
│ │ │ ├── components
│ │ │ │ ├── ModuleComponent1
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── constants.ts
│ │ │ │ │ │ ├── utils.ts
│ │ │ │ │ │ ├── ModuleComponent1UIElement.tsx
│ │ │ │ │ ├── Component.tsx
│ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── useModuleComponent1Hook.ts
│ │ │ │ │ │ ├── types.d.ts
│ │ │ │ ├── ModuleComponent2.tsx
│ │ │ ├── hooks
│ │ │ │ ├── useModuleHook1.ts
│ │ │ │ ├── useModuleHook2.ts
│ │ │ ├── Module.tsx
│ │ │ ├── types.d.ts
│ │ ├── Module2
│ │ │ ├── assets
│ │ │ │ ├── constants.ts
│ │ │ │ ├── utils.ts
│ │ │ │ ├── Module2UIElement.tsx
│ │ ├── components
│ │ │ ├── ModuleComponent1.tsx
│ ├── hooks
│ │ │ ├── useModuleHook1.ts
│ ├── Module.tsx
│ ├── types.d.ts
└── global.d.ts
└── global.d.ts
```

### Architecture Overview
Expand Down

0 comments on commit f59cdbf

Please sign in to comment.