0.1.3 • Published 5 years ago

netdata-ui v0.1.3

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

Netdata UI kit

Development process

  • squash-merge is a default PR merge strategy
  • after any merge, NPM version should be published (in future to be moved to CI)
  • versions are major (breaking changes, large refactors), minor (new component added), and patch (small changes)
  • please add declaration of exported components to provide nice typings for users.
// BAD
export const MyComponent = (props: PropsT) => <>...</>

// GOOD
export const MyComponent: FC<PropsT> = (props: PropsT) => <>...</>

Playground

You can find latest master storybook playground here

Components