You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
366 B
JavaScript
18 lines
366 B
JavaScript
'use strict'
|
|
const React = require('react')
|
|
const ReactDOM = require('react-dom')
|
|
const create = require('create-react-class')
|
|
const Promise = require('bluebird')
|
|
|
|
let input = create({
|
|
displayName: "Input",
|
|
render: function() {
|
|
return <div className="input">
|
|
<input placeholder="unencrypted message"></input>
|
|
</div>
|
|
}
|
|
})
|
|
|
|
|
|
module.exports = input
|