mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
16 lines
313 B
TypeScript
16 lines
313 B
TypeScript
import React from 'react';
|
|
import { TodoListItem } from './TodoListItem';
|
|
|
|
export class TodoList extends React.Component<any, any> {
|
|
render() {
|
|
return (
|
|
<ul className="todos">
|
|
<TodoListItem />
|
|
<TodoListItem />
|
|
<TodoListItem />
|
|
<TodoListItem />
|
|
</ul>
|
|
);
|
|
}
|
|
}
|