1.0.6 • Published 9 years ago
onesie-toggle-environment-block v1.0.6
Onesie Toggle Block View
React Reuseable Component that allows toggling between a given thumbnail view and a detail view.
Installation
npm i --save onesie-toggle-environment-block
Usage
Add to Project
####ES5
var ClusterToggleView = require('onesie-toggle-environment-block').default;
####ES6
import ClusterToggleView from 'onesie-toggle-environment-block';
Passing Views as Children
<ClusterToggleView>
//First Child is the Thumbnail View
<div>
Thumbnail View
</div>
//Second Child is the Detail View
<div>
Detail View
</div>
</ClusterToggleView>
Passing Views as Props
var thumb = <div>Thumb View</div>;
var expanded = <div>Detail View</div>;
<ClusterToggleView
thumbElement={thumb}
detailElement={expanded}/>
Component Styling
TO DO: Add Styling Documentation
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Credits
Juan Carlos Garzon Author
Oakley Hall Project Lead, Code Review
Yuan Shen Code Review
1.0.6
9 years ago
1.0.5
9 years ago
1.0.4
9 years ago
1.0.3
9 years ago
1.0.2
9 years ago
1.0.1
9 years ago
1.0.0
9 years ago
0.1.0
9 years ago
0.0.13
10 years ago
0.0.12
10 years ago
0.0.11
10 years ago
0.0.10
10 years ago
0.0.9
10 years ago
0.0.8
10 years ago
0.0.7
10 years ago
0.0.6
10 years ago
0.0.5
10 years ago
0.0.3
10 years ago
0.0.2
10 years ago
0.0.1
10 years ago