Last active
May 23, 2022 10:59
-
-
Save alpavlove/f8c5cdd6c0ef8c7b8a2c0dabae3a8254 to your computer and use it in GitHub Desktop.
Basic Tabs component - TabTitle.tsx
This file contains hidden or 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
import React from "react" | |
type Props = { | |
title: string | |
} | |
const TabTitle: React.FC<Props> = ({ title}) => { | |
return ( | |
<li> | |
<button>{title}</button> | |
</li> | |
) | |
} | |
export default TabTitle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment