mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
adding some skeleton to the todo app
This commit is contained in:
17
playground/src/components/TodoList.tsx
Normal file
17
playground/src/components/TodoList.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user