Files
react/shells/dev/app/app.js
T
2019-01-23 08:45:19 -08:00

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>
);
}