Merge pull request #12803 from uhoh-itsmaciek/patch-1

Fix stray smart quotes on React snippet
This commit is contained in:
Michael Shilman 2020-10-18 17:54:44 +08:00 committed by GitHub
commit f333db96a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,5 +9,5 @@ export default {
title: 'Button',
component: Button
};
export const Text = () => <Button label=Hello onClick={action('clicked')} />;
```
export const Text = () => <Button label='Hello' onClick={action('clicked')} />;
```