Previous migration stubbed most components. Now properly ported from Next.js with type-only imports and react-router-dom Link/navigation.
17 lines
531 B
TypeScript
17 lines
531 B
TypeScript
|
||
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>
|
||
);
|
||
}
|