Files
react/shells/dev/app/App.js
2019-01-30 10:49:50 -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>
);
}