feat: Test run detail pane (#381)

This commit is contained in:
kimatata
2026-01-12 23:27:34 +09:00
committed by GitHub
parent ab348fc4e5
commit 34135209d9
18 changed files with 564 additions and 339 deletions

View File

@@ -0,0 +1,13 @@
'use client';
import { Alert } from '@heroui/react';
export default function History() {
return (
<div className="h-full text-default-500">
<div className="mb-4">
<Alert color="secondary" title="Sorry" description={'History function will be implemented'} />
</div>
</div>
);
}