mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
import React from 'react';
|
|
import { TodoHeader } from './components/TodoHeader';
|
|
|
|
export class TodoApp extends React.Component<any, any> {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<TodoHeader />
|
|
</div>
|
|
);
|
|
}
|
|
}
|