https://github.com/grovertb/krowdy-ui
https://github.com/grovertb/krowdy-ui
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/grovertb/krowdy-ui
- Owner: grovertb
- License: mit
- Created: 2019-10-24T21:53:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T12:10:28.000Z (over 3 years ago)
- Last Synced: 2025-06-28T20:40:39.887Z (about 1 year ago)
- Language: JavaScript
- Size: 7.28 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Krowdy-UI
[React](https://reactjs.org/) components that implement [Google's Material Design](https://material.io/design/introduction/).
[](https://www.npmjs.com/package/@krowdy-ui/core)
[](https://www.npmjs.com/package/@krowdy-ui/core)
[](https://bestpractices.coreinfrastructure.org/projects/3444?q=1)

[](https://isitmaintained.com/project/grovertb/krowdy-ui "Average time to resolve an issue")
##### This project based on [Material-UI](https://material-ui.com)
## Installation
Krowyd-UI is available as an [npm package](https://www.npmjs.com/package/@krowdy-ui/core).
**[Web site](https://ui.krowdy.com/)**
```sh
// with npm
npm install @krowdy-ui/core
// with yarn
yarn add @krowdy-ui/core
```
Please note that `@next` will only point to pre-releases; to get the latest stable release use `@latest` instead.
## Usage
Here is a quick example to get you started, **it's all you need**:
```jsx
import React from 'react';
import ReactDOM from 'react-dom';
import { ThemeProvider } from '@krowdy-ui/styles';
import { Button, createMuiTheme, krowdyTheme } from '@krowdy-ui/core';
function App() {
return (
Hello World
);
}
ReactDOM.render(, document.querySelector('#app'));
```
Yes, it's really all you need to get started as you can see in this live and interactive demo:
[](https://codesandbox.io/s/usage-h8tv4)
## Questions
For *how-to* questions and other non-issues,
please use [StackOverflow](https://stackoverflow.com/questions/tagged/krowdy-ui) instead of Github issues.
There is a StackOverflow tag called "krowdy-ui" that you can use to tag your questions.
## Examples
Are you looking for an example project to get started?
[We host some](https://ui.krowdy.com/getting-started/example-projects).
## Documentation
Check out our [documentation website](https://ui.krowdy.com).
## Changelog
Recently Updated?
Please read the [changelog](https://github.com/grovertb/krowdy-ui/releases).
## Contributing
Read our [contributing guide](/CONTRIBUTING.md) to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Krowdy-UI.
## License
This project is licensed under the terms of the
[MIT license](/LICENSE).