Skip to content

Commit

Permalink
fix: error about className invalid propery
Browse files Browse the repository at this point in the history
  • Loading branch information
OM committed Dec 23, 2023
1 parent 795aaf2 commit c50d000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Greetings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ interface GreetingsProps {
}

export default function Greetings({ name }: GreetingsProps) {
return <h1 className="mb-4 text-4xl font-extrabold leading-none tracking-tight text-white-900 md:text-5xl lg:text-6xl dark:text-white">{name}</h1>
return <h1 class="mb-4 text-4xl font-extrabold leading-none tracking-tight text-white-900 md:text-5xl lg:text-6xl dark:text-white">{name}</h1>
;
}

0 comments on commit c50d000

Please sign in to comment.