mirror of
https://github.com/facebook/react.git
synced 2026-02-25 05:03:03 +00:00
18 lines
363 B
JavaScript
18 lines
363 B
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
import ElementTypes from './ElementTypes';
|
|
import InspectableElements from './InspectableElements';
|
|
import List from './ToDoList';
|
|
import styles from './App.css';
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className={styles.App}>
|
|
<List />
|
|
<ElementTypes />
|
|
<InspectableElements />
|
|
</div>
|
|
);
|
|
}
|