Update | Project Ready

This commit is contained in:
Possible
2025-04-03 17:05:59 +01:00
commit c5aee9e2ec
176 changed files with 34486 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
export const Tab = ( { name, className, active, onTabClick } ) => {
return (
<button className={ `${ className } ${ active ? "border-b-2 border-b-[#0F75BC]" : "" }` } onClick={ () => onTabClick( name ) }>
{ name }
</button>
)
}