import React from 'react' import styled from 'styled-components' import { Container, ContentBlock, MainContent, Section, SectionRow } from '../components/base/base' import { TokenList } from '../components/TokenList/TokenList' import { Title } from '../typography/Title' import { AccountButton } from '../components/account/AccountButton' export function Tokens() { return (
Tokens
) } const TokensContentBlock = styled(ContentBlock)` padding: 16px 32px; `