react/shells/dev/app/InspectableElements/InspectableElements.js

20 lines
399 B
JavaScript
Raw Normal View History

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