import React, { useState } from 'react' import { ThemeProvider, Flex } from 'theme-ui' import { theme } from '../../theme' import { Home, MapPin, Globe, Command, List, ExternalLink } from 'react-feather' import TabItem from './TabItem' import Page from './Page' const Popup = () => { const [tab, setTab] = useState(1) return ( {/* setTab(0)} /> */} setTab(1)} /> setTab(2)} /> {/* setTab(3)} /> */} setTab(3)} /> window.open('https://vytal.io')} /> ) } export default Popup