In React 0.12 you check if the "type" property is a string. In older versions you would have to inspect the "constructor" property (child.constructor.name would be a good hint)
var Element = <p>Some Tag</p>;
if (_.isString(Element.type)) console.log("got DOM primitive")