mirror of
https://github.com/temetro/temetro.git
synced 2026-08-22 16:06:39 +00:00
ce2a54cc43
New /pharmacy department home: KPI cards (active prescriptions, expiring within 7 days from parseable durations, patients on medication) over a dispensing queue of active prescriptions (oldest first) with search, a mark-completed action and the existing detail sheet. No create/delete UI — prescribing stays with clinicians. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { PharmacyView } from "@/components/pharmacy/pharmacy-view";
|
|
import { SidebarInset } from "@/components/ui/sidebar";
|
|
|
|
export default function PharmacyPage() {
|
|
return (
|
|
<SidebarInset className="flex flex-1 flex-col overflow-y-auto">
|
|
<PharmacyView />
|
|
</SidebarInset>
|
|
);
|
|
}
|