0.0.5 • Published 4 years ago

@mcdevv/use-breadcrumb-dropdown v0.0.5

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

@mcdevv/use-breadcrumb-dropdown

this is a boilerplate hook currently, do not use. When complete, React Hook will render breadcrumbs that show sibling directories/pages upon click or mouseover

NPM JavaScript Style Guide

Install

npm install @mcdevv/use-breadcrumb-dropdown
# or
yarn add @mcdevv/use-breadcrumb-dropdown

Usage...

import React from 'react'

import { TwilioLogo, useCounter, useDocumentTitle } from '@mcdevv/use-breadcrumb-dropdown'

const App = () => {
  const [count, setCount] = useCounter(4)
  useDocumentTitle(count)
  return (
        <div>
          <TwilioLogo
            height='240px'
            width='520px'
            customStyles={{ border: '1px solid black' }}
        />
        <p>Currently, the count is: {count}</p>
        <button onClick={() => setCount(count + 1)}>Add 1</button>
        <button onClick={() => setCount(count - 1)}>Subtract 1</button>
        </div>
  )
}

License

MIT © @mcdevv

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago

1.0.0

4 years ago