Skip to content

Instantly share code, notes, and snippets.

@alpavlove
Last active May 23, 2022 10:59
Show Gist options
  • Save alpavlove/f8c5cdd6c0ef8c7b8a2c0dabae3a8254 to your computer and use it in GitHub Desktop.
Save alpavlove/f8c5cdd6c0ef8c7b8a2c0dabae3a8254 to your computer and use it in GitHub Desktop.
Basic Tabs component - TabTitle.tsx
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