react-injectables
Version:
Explicitly inject Components into any part of your React render tree.
16 lines (13 loc) • 318 B
JavaScript
import React from 'react';
const Home = () => (
<div>
<p>
Welcome to the demo page for using Injectables with react router.
</p>
<p>
The index route doesn't do any injections into the header, so you should
see a message indication this fact.
</p>
</div>
);
export default Home;