summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-14 01:18:16 +0300
committereug-vs <eug-vs@keemail.me>2021-03-14 01:18:16 +0300
commit05ccf76dbbb54e52ae81a469f91b3660057058dc (patch)
treed0509803f8e9d092d7e423c439d67da8e0ca97ec /src/index.tsx
parentc6fac69a8273ce20216002925deb0a2b5425dc25 (diff)
downloadcommercel-ui-05ccf76dbbb54e52ae81a469f91b3660057058dc.tar.gz
style: install eslint
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 169da4c..0b6f723 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -4,15 +4,17 @@ import 'tailwindcss/tailwind.css';
import {
BrowserRouter as Router,
Switch,
- Route
+ Route,
} from 'react-router-dom';
import Header from './components/Header';
import Home from './containers/Home';
import Products from './containers/Products';
const navigation = [
- { name: 'Главная', route: '/'},
- { name: 'Товары', route: '/products'}
+ { name: 'Главная', route: '/' },
+ { name: 'Товары', route: '/products' },
+ { name: 'Контрагенты', route: '/contractors' },
+ { name: 'Накладные', route: '/waybills' },
];
const App: React.FC = () => (
@@ -29,5 +31,5 @@ ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
- document.getElementById('root')
+ document.getElementById('root'),
);