[READ-ONLY] Mirror of https://github.com/Schniz/react-gooey-nav. The React Gooey Navigation Menu™ react-gooey-nav.surge.sh/
0

Configure Feed

Select the types of activity you want to include in your feed.

TypeScript 90.2%
HTML 7.5%
JavaScript 1.1%
Other 1.3%
36 2 1

Clone this repository

https://tangled.org/schlez.in/react-gooey-nav https://tangled.org/did:plc:5diwvoc7etfm77cx4g45oppo
git@tangled.org:schlez.in/react-gooey-nav git@tangled.org:did:plc:5diwvoc7etfm77cx4g45oppo

For self-hosted knots, clone URLs may differ based on your setup.



README.md

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>
);

Development#

Run the example with:

npm start

Help me make this thing better!#

:octocat:

Thanks Lucas!