mfrachet
mfrachet

Reputation: 8932

Reactjs component with changing views

I m actually developping an application using Fluxible and Reactjs.

I need to create inside of this app (already using a router) dynamic subroutes inside of a parent component.

In fact, my component is, globally a planning manager. We can see daily, weekly, monthly etc... tasks.

It means that I have multiple components that can be replaced by each other inside of a parent component which can be .

So I was wondering if we can use something like an "inside component router". I mean this router should work only inside of the concerned component, like changing only the inside components of the parent component Planning.

Upvotes: 0

Views: 60

Answers (1)

Andreas Møller
Andreas Møller

Reputation: 849

This looks like a job for react router: https://github.com/rackt/react-router.

Upvotes: 1

Related Questions