Skip to content

Commit

Permalink
fixed errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Thepuja committed Jul 16, 2024
1 parent cc9f58d commit 8ac943e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nepalingo-web/src/components/GreetingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const headingStyle: React.CSSProperties = {
const GreetingCard: React.FC<GreetingCardProps> = ({ message, name }) => {
return (
<div style={cardStyle}>
<h1 style={headingStyle}>{message}</h1>
<h1 style={headingStyle}>{message} {name}</h1>

</div>
);
};
Expand Down

0 comments on commit 8ac943e

Please sign in to comment.