Skip to content

Instantly share code, notes, and snippets.

View brycekmartin's full-sized avatar

Bryce Martin brycekmartin

  • Site2Life LLC
  • Lebanon, PA
View GitHub Profile
@brycekmartin
brycekmartin / client.js
Last active December 21, 2016 18:12 — forked from samsch/client.js
<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>
<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>