Created
May 9, 2020 14:04
-
-
Save sumitkharche/3492b474f4cd5a7fe4abcf4a1dd7b467 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Stack, Label } from '@fluentui/react'; | |
function TodoItem(props: any) { | |
return ( | |
<Stack> | |
<Stack horizontal verticalAlign="center" horizontalAlign="space-between"> | |
<Label>{props.todo.name}</Label> | |
</Stack> | |
</Stack> | |
); | |
} | |
export default TodoItem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment