2.0.0 • Published 6 years ago

react-gooey-nav v2.0.0

Weekly downloads
6
License
ISC
Repository
github
Last release
6 years ago

React Gooey Navigation Menu

based on Lucas Bebber's Gooey Menu

I've updated the implementation to use TypeScript and modern-ish React

Installation

npm install --save react-gooey-nav

Usage

import { Menu, Item } from "react-gooey-nav";

var nav = (
  <Menu orientation="bottom">
    <Item title="Cool!">😎</Item>
    <Item
      title="Kitty"
      componentProps={{ onClick: () => console.log("Meow!") }}
    >
      😸
    </Item>
  </Menu>
);

Help me make this thing better!

:octocat:

Thanks Lucas!