0.2.0 • Published 3 months ago

use-url-hash v0.2.0

Weekly downloads
40
License
-
Repository
github
Last release
3 months ago

Use URL Hash

A simple React hook providing the current URL hash and triggering a re-render on every change.

Get started

Install the package:

npm i use-url-hash

Import it in your component:

import React from 'react'
import { useUrlHash } from "use-url-hash"

const MyApp = () => {
  const hash = useUrlHash()

  return (
    <div>
      <h3>Use URL Hash</h3>
      <p>The current URL hash is <code>"{hash}"</code></p>
    </div>
  )
}

The value of hash will be already set at the very first render.

Example

Check out example/index.tsx for a working example.

cd example
npm install
npm start