web-client-vite/src/components/ProjectFiles.tsx
Markov 3a2a32a50e fix: restore all original components (KanbanBoard, ChatPanel, TaskModal, etc.)
Previous migration stubbed most components. Now properly ported from
Next.js with type-only imports and react-router-dom Link/navigation.
2026-02-24 09:33:04 +01:00

17 lines
531 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Project } from "@/lib/api";
interface Props {
project: Project;
}
export default function ProjectFiles({ project: _project }: Props) {
return (
<div className="flex flex-col items-center justify-center h-full text-[var(--muted)]">
<div className="text-4xl mb-4">📁</div>
<div className="text-sm">Файлы проекта</div>
<div className="text-xs mt-1">Скоро здесь можно будет загружать и просматривать файлы</div>
</div>
);
}