app-arena / patterns
App-Arena Styleguide and pattern library based on patternlab.io
Installs: 637
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 7
Forks: 4
Open Issues: 0
Language:JavaScript
Type:project
Requires
- php: >=5.4
Requires (Dev)
- 1.2.8
- 1.2.6
- 1.2.3
- 1.2.2
- 1.2.1
- 1.1.60
- 1.1.59
- 1.1.57
- 1.1.56
- 1.1.55
- 1.1.54
- 1.1.52
- 1.1.51
- 1.1.50
- 1.1.49
- 1.1.48
- 1.1.47
- 1.1.46
- 1.1.45
- 1.1.44
- 1.1.43
- 1.1.42
- 1.1.41
- 1.1.40
- 1.1.39
- 1.1.38
- 1.1.37
- 1.1.36
- 1.1.35
- 1.1.34
- 1.1.33
- 1.1.32
- 1.1.31
- 1.1.30
- 1.1.29
- 1.1.28
- 1.1.27
- 1.1.26
- 1.1.25
- 1.1.24
- 1.1.23
- 1.1.22
- 1.1.21
- 1.1.20
- 1.1.19
- 1.1.18
- 1.1.17
- 1.1.16
- 1.1.15
- 1.1.14
- 1.1.13
- 1.1.12
- 1.1.11
- 1.1.10
- 1.0.28
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-documentation
- dev-aa-website
This package is auto-updated.
Last update: 2024-11-06 10:10:58 UTC
README
App-Arena Patterns is a set of React components that implement the App-Arena CI.
Getting started
App-Arena Patterns are available as npm package.
yarn add apparena-patterns-react
or
npm install apparena-patterns-react
to add all components to your app.
Usage
Here is a quick example to get you started:
./App.js
import React from 'react'; import ReactDOM from 'react-dom'; import MyAwesomeReactComponent from './MyAwesomeReactComponent'; const App = () => ( <MyAwesomeReactComponent /> ); ReactDOM.render( <App />, document.getElementById('app') );
./MyAwesomeReactComponent.js
import React from 'react'; import {Button} from 'apparena-patterns-react'; const MyAwesomeReactComponent = () => ( <Button type="primary">Label</Button> ); export default MyAwesomeReactComponent;
Please refer to each component's documentation page to see how they should be imported.
Contributing
If you would like to contribute patterns or add patterns to this library, head over to our contributing section.
License
This project is licensed under the terms of the MIT license