react/packages/react-devtools-shell/app/InspectableElements/InspectableElements.js

24 lines
529 B
JavaScript
Raw Normal View History

// @flow
2019-08-14 08:58:03 +08:00
import React, {Fragment} from 'react';
2019-02-05 16:32:02 +08:00
import Contexts from './Contexts';
import CustomHooks from './CustomHooks';
import CustomObject from './CustomObject';
import NestedProps from './NestedProps';
import SimpleValues from './SimpleValues';
// TODO Add Immutable JS example
export default function InspectableElements() {
return (
<Fragment>
<h1>Inspectable elements</h1>
<SimpleValues />
<NestedProps />
2019-02-05 16:32:02 +08:00
<Contexts />
<CustomHooks />
<CustomObject />
</Fragment>
);
}