react-soa-routing
v2.2.1
Published
Connected router and routing service for react-soa.
Readme
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')
)