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;