Created
August 22, 2020 15:22
-
-
Save waptik/64088f0bc6358fc719bcea02cbea8f08 to your computer and use it in GitHub Desktop.
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
... | |
const tabs = [ | |
'Account', | |
'Profile', | |
'Payment', | |
'Notification', | |
'Advanced' | |
] | |
... | |
<> | |
<Page title={`Settings for ${username}`}> | |
<Box mt="30px"> | |
<Flex | |
align="center" | |
pb={8} | |
> | |
<Container> | |
<Flex | |
justifyContent="space-between" | |
> | |
<Text | |
as="span" | |
fontWeight="bold" | |
fontSize="20px" | |
> | |
Settings | |
</Text> | |
</Flex> | |
<Tabs | |
minH="52px" | |
overflow="hidden" | |
> | |
<TabList | |
borderBottom="2px solid rgba(50,56,66,.1)" | |
w="99vh" | |
h="58px" | |
> | |
{ | |
tabs.map((tab, index) => ( | |
<Tab | |
key={index} | |
outline="none" | |
fontWeight="bold" | |
overflow="hidden" | |
> | |
{tab} | |
</Tab> | |
)) | |
} | |
<Tab>Notification</Tab> | |
</TabList> | |
</Tabs> | |
</Container> | |
</Flex> | |
</Box> | |
</Page> | |
</> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment