Skip to content

Instantly share code, notes, and snippets.

@sumitkharche
Created May 9, 2020 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumitkharche/3492b474f4cd5a7fe4abcf4a1dd7b467 to your computer and use it in GitHub Desktop.
Save sumitkharche/3492b474f4cd5a7fe4abcf4a1dd7b467 to your computer and use it in GitHub Desktop.
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