React component for more wiggly divs (an implementation/wrapper of wiv.js)
Originally bootstrapped using create-react-library
Demo: https://ndresselhaus.github.io/react-wiv/
npm install --save react-wiv
import React, { Component } from 'react'
import Wiv from 'react-wiv'
class Example extends Component {
render () {
return (
<Wiv color="#00FF00" height={4} tightness={6} thickness={2} speed={0.55}>
HELLO WIGGLES!
</Wiv>
)
}
}
MIT © ndresselhaus