mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
10 lines
138 B
TypeScript
10 lines
138 B
TypeScript
import React from 'react';
|
|
|
|
export const TodoFooter = (props: any) => {
|
|
return (
|
|
<footer>
|
|
<p>footer</p>
|
|
</footer>
|
|
);
|
|
};
|