wip Pup 1.0.0
This commit is contained in:
commit
cdc15f019d
48 changed files with 1100 additions and 0 deletions
16
imports/ui/components/InputHint/InputHint.js
Normal file
16
imports/ui/components/InputHint/InputHint.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import './InputHint.scss';
|
||||
|
||||
const InputHint = ({ children }) => (
|
||||
<div className="InputHint">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
|
||||
InputHint.propTypes = {
|
||||
children: PropTypes.node.isRequired,
|
||||
};
|
||||
|
||||
export default InputHint;
|
||||
Loading…
Add table
Add a link
Reference in a new issue