react-gooey-nav

React Gooey Navigation

Usage no npm install needed!

<script type="module">
  import reactGooeyNav from 'https://cdn.skypack.dev/react-gooey-nav';
</script>

README

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!