Added exercises

This commit is contained in:
Ken
2019-03-02 23:22:09 -08:00
parent 46b89ff90b
commit 5b14d792f8
27 changed files with 271 additions and 478 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import { Stack } from 'office-ui-fabric-react';
import { TodoFooter } from './TodoFooter';
import { TodoHeader } from './TodoHeader';
import { TodoList } from './TodoList';
export const TodoApp = () => {
return (
<Stack horizontalAlign="center">
<Stack style={{ width: 400 }} gap={25}>
<TodoHeader />
<TodoList />
<TodoFooter />
</Stack>
</Stack>
);
};