How do I create a NotFoundRoute component using "react-router": "^1.0.0-rc3" ? Can someone tell me what I'm doing wrong here please?
import { NotFoundRoute } from 'react-router';
console.log(NotFoundRoute); //undefined
NotFoundRoute was removed from 1.0.0-rc3, instead you just use a Route with a catch-all pattern.
Read the upgrade guide.