Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Frontend - Queueing Network Simulation
React + TypeScript + Vite frontend for the queueing network simulation dashboard.
## Setup
Install dependencies:
```bash
npm install
```
## Running
Development mode:
```bash
npm run dev
```
The app will be available at `http://localhost:5173`
## Build
Production build:
```bash
npm run build
```
Preview production build:
```bash
npm run preview
```
## Tech Stack
- React 18
- TypeScript
- Vite
- Tailwind CSS
- Chart.js (for charts)
- D3.js (for network topology visualization)
- Zustand (state management)
- Axios (HTTP client)
## Structure
- `src/components/` - React components
- `simulation/` - Simulation control components
- `visualization/` - Charts and visualizations
- `results/` - Results display components
- `layout/` - Layout components (Dashboard, Header, etc.)
- `src/hooks/` - Custom React hooks
- `src/services/` - API clients and services
- `src/types/` - TypeScript type definitions
- `src/utils/` - Utility functions