mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
adding back docs
This commit is contained in:
9
docs/step1-05/demo/src/components/TodoFooter.tsx
Normal file
9
docs/step1-05/demo/src/components/TodoFooter.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import React from 'react';
|
||||
|
||||
export const TodoFooter = (props: any) => {
|
||||
return (
|
||||
<footer>
|
||||
<p>footer</p>
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
7
docs/step1-05/demo/src/components/TodoHeader.tsx
Normal file
7
docs/step1-05/demo/src/components/TodoHeader.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
export class TodoHeader extends React.Component {
|
||||
render() {
|
||||
return <div />;
|
||||
}
|
||||
}
|
||||
7
docs/step1-05/demo/src/components/TodoList.tsx
Normal file
7
docs/step1-05/demo/src/components/TodoList.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
export class TodoList extends React.Component<any, any> {
|
||||
render() {
|
||||
return <div />;
|
||||
}
|
||||
}
|
||||
7
docs/step1-05/demo/src/components/TodoListItem.tsx
Normal file
7
docs/step1-05/demo/src/components/TodoListItem.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import React from 'react';
|
||||
|
||||
export class TodoListItem extends React.Component {
|
||||
render() {
|
||||
return <div />;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user