Fix stray smart quotes on React snippet

This commit is contained in:
Maciek Sakrejda 2020-10-16 14:51:07 -07:00 committed by GitHub
parent b061cc62a3
commit 4cdf641dad
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')} />;
```