fix: add missing UI components and utilities

- Add tabs.tsx component
- Add select.tsx component
- Add formatCurrency utility function
- Export new components from index

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Consultoria AS
2026-01-22 03:40:03 +00:00
parent f4b42aa8c2
commit 74b1bb8c02
5 changed files with 184 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import { env } from './config/env.js';
const PORT = parseInt(env.PORT, 10);
app.listen(PORT, () => {
console.log(`🚀 API Server running on http://localhost:${PORT}`);
app.listen(PORT, '0.0.0.0', () => {
console.log(`🚀 API Server running on http://0.0.0.0:${PORT}`);
console.log(`📊 Environment: ${env.NODE_ENV}`);
});