2.2.1 • Published 3 years ago

react-soa-routing v2.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

SOA Routing Service (SRS)

This library provides ConnectedRouter for react-router and creates a RoutingServices that can be used in your application.

please make sure you have latest react-soa installed.

Usage

const store = createStore();

export function App() {
   return (
       <Switch>
       </Switch>
   );
}
ReactDOM.render(
   <SoaProvider store={store}>
       <ConnectedRouter>
           <App/>
       </ConnectedRouter>
   </SoaProvider>,
   document.getElementById('root')
)