Files
react/fixtures/devtools/shell/app/InspectableElements/InspectableElements.js
Brian Vaughn 183f96f2ac Prettier
2019-08-13 17:58:03 -07:00

24 lines
529 B
JavaScript

// @flow
import React, {Fragment} from 'react';
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 />
<Contexts />
<CustomHooks />
<CustomObject />
</Fragment>
);
}