mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
import React from 'react';
|
|
import { Text, Stack } from '@uifabric/experiments';
|
|
|
|
export interface TodoFooterProps {}
|
|
|
|
export const TodoFooter = (props: TodoFooterProps) => {
|
|
return (
|
|
<Stack horizontal horizontalAlign="center">
|
|
<Text>1 item left</Text>
|
|
</Stack>
|
|
);
|
|
};
|