ADD Dropdown component for user actions

This commit is contained in:
2025-06-24 22:52:24 +02:00
parent d3dce9ec25
commit 38f3778a6b
8 changed files with 503 additions and 36 deletions

View File

@@ -1,10 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
import flowbiteReact from "flowbite-react/plugin/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
plugins: [react(), tailwindcss(), flowbiteReact()],
preview: {
port: 5173,
strictPort: true,
@@ -22,4 +23,4 @@ export default defineConfig({
}
}
}
})
})