import React from 'react'; export default ({children, show = true}) => ( show ?
{children}
: null );