import { useState } from 'react';
import Uik from "../../ui-kit"
import Title from "./Title"
function Example () {
const [firstTab, setFirstTab] = useState("First")
const [secondTab, setSecondTab] = useState("tokens")
return (
<>
setFirstTab(value)}
options={["First", "Second", "Third"]}
/>
setSecondTab(value)}
options={[
{ value: 'tokens', text: 'Tokens' },
{ value: 'pools', text: 'Pools' },
{ value: 'staking', text: 'Staking', indicator: '3' },
{ value: 'nfts', text: 'NFTs' },
{ value: 'activity', text: 'Activity' },
]}
/>
>
)
}
const code = `const [firstTab, setFirstTab] = useState("First")
const [secondTab, setSecondTab] = useState("tokens")
<>
setFirstTab(value)}
options={["First", "Second", "Third"]}
/>
setSecondTab(value)}
options={[
{ value: 'tokens', text: 'Tokens' },
{ value: 'pools', text: 'Pools' },
{ value: 'staking', text: 'Staking', indicator: '3' },
{ value: 'nfts', text: 'NFTs' },
{ value: 'activity', text: 'Activity' },
]}
/>
>`
export default Example