aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/test-utils/ShowMore.js
blob: a01ae6a5c9795cf3e76c3162b92793a72a55240f (plain)
1
2
3
4
5
6
7
8
9
10
import React from 'react';

const ShowMore = ({children}) => {
	if (children.length > 50) {
		return (<div>Show Message With More Mock</div>);
	} else {
		return (<div>Show Message Mock</div>);
	}
};
export default ShowMore;