Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created March 12, 2015 16:37
Show Gist options
  • Save mkusher/1618ae6a3c85a34c5fb9 to your computer and use it in GitHub Desktop.
Save mkusher/1618ae6a3c85a34c5fb9 to your computer and use it in GitHub Desktop.
import React from 'react'
import keyboard from './js/main.js'
export default React.createClass({
componentDidMount: function(){
return keyboard();
},
render: function(){
return (
<form action="" className="email-form">
<input className="input-field email-input" type="email" placeholder="EMAIL" />
</form>
);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment