import React from 'react';
import { GeneralInfoPanel } from './components/GeneralInfoPanel';
import UnfinishedBanner from './components/UnfinishedBanner';
import TabSection from 'containers/TabSection';
import { Route, Switch, RouteComponentProps } from 'react-router';
import { RouteNotFound } from 'components/RouteNotFound';
import { NewTabLink } from 'components/ui';
import translate from 'translations';
const ENSDocsLink = () => (
);
const ENSTitle = () => (
{translate('NAV_ENS')}
The is a distributed, open, and extensible naming system based on the Ethereum
blockchain. Once you have a name, you can tell your friends to send ETH to{' '}
mewtopia.eth instead of
0x7cB57B5A97eAbe942......
);
class ENSClass extends React.Component> {
public render() {
const { match } = this.props;
const currentPath = match.url;
return (
(
)}
/>
);
}
}
export default ENSClass;