Skip to main content
Module

x/aleph/framework/react/mod.ts>withRouter

The Full-stack Framework in Deno.
Go to Latest
function withRouter
import { withRouter } from "https://deno.land/x/aleph@v0.3.0-beta.7/framework/react/mod.ts";

withRouter injects the prop as current RouterURL of page routing.

class MyComponent extends React.Component {
  render() {
    return <p>{this.props.router.pathname}</p>
  }
}
export default withRouter(MyComponent)