Skip to content

Commit

Permalink
Move buttons to buttom
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-learner committed Dec 10, 2024
1 parent b91e00e commit 6a8e632
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/components/LabTest/ProcessSpecimen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,16 +259,6 @@ export const ProcessSpecimen: React.FC = () => {
className="mt-1 text-gray-600"
/>
</div>

{/* Footer Buttons */}
<div className="flex items-center justify-end gap-4">
<Button variant="outline" size="lg">
Cancel
</Button>
<Button variant="primary" size="lg">
Save
</Button>
</div>
</div>
))}
{/* Add another result button */}
Expand All @@ -282,6 +272,15 @@ export const ProcessSpecimen: React.FC = () => {
</Button>
</>
)}
{/* Footer Buttons */}
<div className="flex items-center justify-end gap-4">
<Button variant="outline" size="lg">
Cancel
</Button>
<Button variant="primary" size="lg">
Submit
</Button>
</div>
</div>
);
};

0 comments on commit 6a8e632

Please sign in to comment.