Skip to content

Instantly share code, notes, and snippets.

@samsch
Forked from brycekmartin/client.js
Last active December 21, 2016 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save samsch/8acdaabd4138cc8abb26f611b40811ee to your computer and use it in GitHub Desktop.
Save samsch/8acdaabd4138cc8abb26f611b40811ee to your computer and use it in GitHub Desktop.
<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="authorize-card/select-invoices" component={SaleSelectInvoices}></Route>
<Route path="void-transaction" component={VoidCcTransaction}></Route>
<Route path="capture-batch" component={CaptureBatch}></Route>
<Route path="select-card-to-process" component={SelectCardToProcess}></Route>
</Route>
</Route>
</Router>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment