- Migrate from Next.js App Router to Vite + React Router - Replace NEXT_PUBLIC_* env vars with VITE_* - Convert all pages to React Router structure - Remove BFF dependency, connect directly to Tracker - JWT auth with query param support in WebSocket - All components migrated with basic functionality - Ready for production deployment
16 lines
482 B
TypeScript
16 lines
482 B
TypeScript
interface Props {
|
|
projectId: string;
|
|
projectSlug: string;
|
|
}
|
|
|
|
export default function KanbanBoard({ projectId: _projectId, projectSlug }: Props) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full text-[var(--muted)]">
|
|
<div className="text-center">
|
|
<h3 className="text-lg mb-2">📋 Kanban Board</h3>
|
|
<p className="text-sm">Project: {projectSlug}</p>
|
|
<p className="text-xs mt-1">Coming soon...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |