https://github.com/aiherrera/react-navbar
A simple & easy to use navbar
https://github.com/aiherrera/react-navbar
aih-public-showcase components react
Last synced: 3 months ago
JSON representation
A simple & easy to use navbar
- Host: GitHub
- URL: https://github.com/aiherrera/react-navbar
- Owner: aiherrera
- License: mit
- Created: 2021-03-10T15:44:56.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-10T15:44:57.000Z (about 4 years ago)
- Last Synced: 2025-03-06T15:08:03.138Z (3 months ago)
- Topics: aih-public-showcase, components, react
- Language: JavaScript
- Homepage:
- Size: 270 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Component Library
[](https://buildkite.com/harvey/react-component-library)
[](https://opensource.org/licenses/MIT)### **Note**: This is an simplified & customized fork from [react-component-library](https://github.com/HarveyD/react-component-library) by Harvey Delaney
This project skeleton was created to help people get started with creating their own React component library using:
- [Rollup](https://github.com/rollup/rollup)
- [Sass](https://sass-lang.com/)
- [TypeScript](https://www.typescriptlang.org/)
- [Storybook](https://storybook.js.org/) to help you create and show off your components
- [Jest](https://jestjs.io/) and [React Testing Library](https://github.com/testing-library/react-testing-library) enabling testing of the components## Development
### Testing
```
npm run test
```### Building
```
npm run build
```### Storybook
To run a live-reload Storybook server on your local machine:
```
npm run storybook
```To export your Storybook as static files:
```
npm run storybook:build
```