mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-07-13 15:28:32 +08:00
12 lines
184 B
TypeScript
12 lines
184 B
TypeScript
import React from 'react';
|
|
|
|
export class TodoHeader extends React.Component<any, any> {
|
|
render() {
|
|
return (
|
|
<header>
|
|
<div>Header</div>
|
|
</header>
|
|
);
|
|
}
|
|
}
|