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.
✨ feat(prenatal-care): Create basic prenatal care component
- Implement initial prenatal care component - Add functionality and layout for prenatal care information Footer: 0.1.3
- Loading branch information
1 parent
8ef2cac
commit 1630d4b
Showing
3 changed files
with
18 additions
and
2 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 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 PrenatalCare = () => { | ||
return ( | ||
<div> | ||
<h1 className="text-2xl font-bold mb-4">Prenatal Care</h1> | ||
{/* Add prenatal care information and resources here */} | ||
</div> | ||
); | ||
}; | ||
|
||
export default PrenatalCare; |
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 |
---|---|---|
|
@@ -8,3 +8,5 @@ const Profile = () => { | |
</div> | ||
); | ||
}; | ||
|
||
export default Profile; |