UNPKG

@chayns-components/date

Version:

A set of beautiful React components for developing your own applications with chayns.

12 lines 403 B
import React, { useMemo, useState } from 'react'; import { StyledHintText } from './HintText.styles'; const HintText = _ref => { let { text } = _ref; const [newHintText, setNewHintText] = useState(); return useMemo(() => /*#__PURE__*/React.createElement(StyledHintText, null, text), [text]); }; HintText.displayName = 'HintText'; export default HintText; //# sourceMappingURL=HintText.js.map