mirror of
https://github.com/Tony0410/nextstep.git
synced 2026-05-24 21:31:43 +08:00
15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
'use client'
|
|
|
|
import { Header, PageContainer } from '@/components/layout/header'
|
|
import { MedicationForm } from '@/components/medications/MedicationForm'
|
|
|
|
export default function NewMedicationPage() {
|
|
return (
|
|
<>
|
|
<Header title="New Medication" showBack backHref="/meds" />
|
|
<PageContainer className="pt-4">
|
|
<MedicationForm />
|
|
</PageContainer>
|
|
</>
|
|
)
|
|
} |