Files
react/fixtures/devtools/shell/app/InspectableElements/SimpleValues.js
2019-08-13 11:11:25 -07:00

24 lines
365 B
JavaScript

// @flow
import React from 'react';
export default function SimpleValues() {
return (
<ChildComponent
string="abc"
emptyString=""
number={123}
undefined={undefined}
null={null}
nan={NaN}
infinity={Infinity}
true={true}
false={false}
/>
);
}
function ChildComponent(props: any) {
return null;
}