maintenance (structure): Full revamp of the project code structure

This commit is contained in:
Mickael KERJEAN
2018-03-02 13:53:53 +11:00
parent 25683b3b56
commit f093f00a4b
128 changed files with 1720 additions and 2666 deletions

View File

@ -0,0 +1,24 @@
import React from 'react';
import PropTypes from 'prop-types';
import './input.scss';
export class Input extends React.Component {
constructor(props){
super(props);
}
render() {
return (
<input
className="component_input"
{...this.props}
ref={(comp) => { this.ref = comp; }}
/>
);
}
}
Input.propTypes = {
type: PropTypes.string,
placeholder: PropTypes.string
};