In the Redux Todo example.
https://github.com/reactjs/redux/tree/master/examples/todomvc
How would you approach creating a "copy" functionality. Basically, adding a new todo using existent todo data (name of the todo).
I was wondering if this is done through the actions? or in the reducer? or does it have to do a CRUD backend response?