forked from fasakinhenry/BornPikin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🗑️ refactor(appointments): Remove unwanted appointments component
- Delete unused appointments component - Clean up related code and references Footer: 0.1.6
- Loading branch information
1 parent
b314ab0
commit 5cd7d4b
Showing
3 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
|
||
const Payment = () => { | ||
return ( | ||
<div> | ||
<h1 className='text-2xl font-bold mb-4'>My Payment</h1> | ||
{/* Add payment information and editing functionality here */} | ||
</div> | ||
); | ||
}; | ||
|
||
export default Payment; |