react-cupertino
v0.4.3
Published
React UI Component library inspired by Apple's Design Philosophy
Downloads
12
Readme
React Cupertino
React component library inspired by Apple's design philosophy.
Installation
You can install React Cupertino using npm:
npm install react-cupertino
Basic usage
In the following example, you can see how to import PushButton
component and render it with title "Agree" and green background color.
import React from 'react';
import ReactDOM from 'react-dom';
import { PushButton } from "react-cupertino";
ReactDOM.render(
<PushButton title="Agree" color="green" />,
document.getElementById('app')
);
Contributing
You are more than welcome to make contributions to the project! See the CONTRIBUTING.md.