From 8e9c0653dd6c6862123c9609ae34e1206d86456e Mon Sep 17 00:00:00 2001 From: talig Date: Wed, 20 Dec 2017 14:30:43 +0200 Subject: Add collaboration feature Issue-ID: SDC-767 Change-Id: I14fb4c1f54086ed03a56a7ff7fab9ecd40381795 Signed-off-by: talig --- openecomp-ui/test-utils/ShowMore.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 openecomp-ui/test-utils/ShowMore.js (limited to 'openecomp-ui/test-utils/ShowMore.js') diff --git a/openecomp-ui/test-utils/ShowMore.js b/openecomp-ui/test-utils/ShowMore.js new file mode 100644 index 0000000000..a01ae6a5c9 --- /dev/null +++ b/openecomp-ui/test-utils/ShowMore.js @@ -0,0 +1,10 @@ +import React from 'react'; + +const ShowMore = ({children}) => { + if (children.length > 50) { + return (
Show Message With More Mock
); + } else { + return (
Show Message Mock
); + } +}; +export default ShowMore; \ No newline at end of file -- cgit 1.2.3-korg