This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Router history={hashHistory}> | |
<Route path="/" component={Layout}> | |
<IndexRoute component={Dashboard}></IndexRoute> | |
<Route path="Login" component={Login}></Route> | |
<Route path="accounting"> | |
<Route path="authorize-orders" component={AuthorizeOrders}></Route> | |
<Route path="credit-transaction" component={CreditCcTransaction}></Route> | |
<Route path="authorize-card"> | |
<IndexRoute component={Sale}></IndexRoute> | |
<Route path="select-invoices" component={SaleSelectInvoices}></Route> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Router history={hashHistory}> | |
<Route path="/" component={Layout}> | |
<IndexRoute component={Dashboard}></IndexRoute> | |
<Route path="Login" component={Login}></Route> | |
<Route path="accounting"> | |
<Route path="authorize-orders" component={AuthorizeOrders}></Route> | |
<Route path="credit-transaction" component={CreditCcTransaction}></Route> | |
<Route path="authorize-card" component={Sale}> | |
<Route path="select-invoices" component={SaleSelectInvoices}></Route> | |
</Route> |