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