mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import React from "react";
|
|
|
|
export class TodoListItem extends React.Component<any, any> {
|
|
|
|
render() {
|
|
const {text, completed} = this.props;
|
|
return (
|
|
<li className="todo">
|
|
<label>
|
|
<input type="checkbox" checked={completed} /> {text}
|
|
</label>
|
|
</li>
|
|
);
|
|
}
|
|
}
|