Apollo Design System
Design system for Enterprise Web Apps
Getting Started
Install
Install with npm:
npm install @afconsult/apollo --save
Install with Yarn:
yarn add @afconsult/apollo
Example
- import apollo CSS in your
src/index.js
file:
import '@afconsult/apollo/dist/css/apollo.css';
- Import required apollo components in your
src/index.js
file or in any of your custom component files:
import { Button, Form, FormGroup, Input, Label } from '@afconsult/apollo';
- Tell React to render the components
ReactDOM.render(
<Form>
<FormGroup>
<Label for="example">Example Input</Label>
<Input id="example" placeholder="Inser text here..">
</FormGroup>
<Button type="submit">Submit</Button>
</Form>,
document.getElementById('app');
)
Contribute
Feel free to create an issue or feature request.
At this point we're not accepting any pull requests.
Authors
Jon Wahlström (jonwa)
See also the list of contributors.
License
This project is licensed under the MIT License - see the LICENSE file for details.