We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1670fb1 commit 895cfafCopy full SHA for 895cfaf
template/README.md
@@ -99,7 +99,7 @@ import Button from './Button'; // Import a component from another file
99
100
class DangerButton extends Component {
101
render() {
102
- return <Button color='red' />;
+ return <Button color="red" />;
103
}
104
105
@@ -139,7 +139,7 @@ import './Button.css'; // Tell Webpack that Button.js uses these styles
139
class Button extends Component {
140
141
// You can use them as regular CSS styles
142
- return <div className='Button' />;
+ return <div className="Button" />;
143
144
145
```
0 commit comments