This project is a simple User Management Dashboard built with Svelte. It provides functionalities to manage users, including adding, editing, deleting, and searching for users.
user-management-dashboard
├── public
│   └── index.html
├── src
│   ├── main.js
│   ├── App.svelte
│   ├── components
│   │   ├── Header.svelte
│   │   ├── UserTable.svelte
│   │   ├── UserRow.svelte
│   │   ├── UserForm.svelte
│   │   └── SearchBar.svelte
│   ├── stores
│   │   └── users.js
│   ├── lib
│   │   └── utils.js
│   └── styles
│       └── app.css
├── package.json
├── vite.config.js
└── svelte.config.js
Clone the repository:
git clone <repository-url>
Navigate to the project directory:
cd user-management-dashboard
Install dependencies:
npm install
Start the development server:
npm run dev
Open your browser and go to http://localhost:3000 to view the dashboard.
This project is licensed under the MIT License.