function Component(props) { const label = Label; if (props.type === 'link') { const uri = createURI(props.id); return ( { e.preventDefault(); uri.navigate(); }}> {label} ); } else { return <>{label}>; } }