Skip to content

Commit

Permalink
chore: contributing quick fix of example
Browse files Browse the repository at this point in the history
Signed-off-by: Claudio Wunder <cwunder@gnome.org>
  • Loading branch information
ovflowd authored Apr 20, 2023
1 parent bfcabb9 commit f6dc39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ import type { FC } from 'react';

type MyComponentProps = {}; // The types of the Props of your Component

const MyComponent: FC<MyComponentProps> = props => (
const MyComponent: FC<MyComponentProps> = ({ prop1, prop2... }) => (
// Actual code of my Component
);

Expand Down

1 comment on commit f6dc39f

@vercel
Copy link

@vercel vercel bot commented on f6dc39f Apr 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.