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