adding some skeleton to the todo app

This commit is contained in:
Ken
2019-01-23 11:14:49 -08:00
parent 1c5b6cc9a7
commit 8b0a0f7569
14 changed files with 569 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import { Stack } from '@uifabric/experiments';
import { TodoListItem } from './TodoListItem';
import { Pivot, PivotItem } from 'office-ui-fabric-react';
export class TodoList extends React.Component {
render() {
return (
<Stack verticalGap={10}>
<TodoListItem checked={false} label="nothing" />
<TodoListItem checked={false} label="nothing" />
<TodoListItem checked={false} label="nothing" />
<TodoListItem checked={false} label="nothing" />
</Stack>
);
}
}