diff options
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 10 |
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'), ); |