mirror of
https://github.com/facebook/react.git
synced 2026-02-26 00:55:04 +00:00
15 lines
273 B
JavaScript
15 lines
273 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>
|
|
)
|
|
} |