23 lines
873 B
TypeScript
23 lines
873 B
TypeScript
import { Card } from "@govoplan/core-webui";
|
|
import { MetricCard } from "@govoplan/core-webui";
|
|
import { Button } from "@govoplan/core-webui";
|
|
export default function ReviewWizard() {
|
|
return (
|
|
<div className="content-pad">
|
|
<div className="page-heading">
|
|
<h1>Review Wizard</h1>
|
|
</div>
|
|
<div className="metric-grid">
|
|
<MetricCard label="Needs review" value="—" tone="warning" />
|
|
<MetricCard label="Missing attachments" value="—" tone="warning" />
|
|
<MetricCard label="Ambiguous matches" value="—" tone="info" />
|
|
<MetricCard label="Blocked" value="—" tone="danger" />
|
|
</div>
|
|
<Card title="Resolution workflow">
|
|
<p className="muted">This wizard will guide users through issues one class at a time.</p>
|
|
<Button variant="primary">Start review</Button>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|