import React from 'react'; import { useTranslation } from './translate'; import { Route, Switch } from 'react-router'; import { Tabs } from '@polkadot/react-components'; import Overview from './Overview'; import { AppProps } from '@polkadot/react-components/types'; type Props = AppProps function App ({ basePath }: Props): React.ReactElement { const { t } = useTranslation(); return (
); } export default App;