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 91c722e commit dae02f6Copy full SHA for dae02f6
exercises/05-adding-styles/app.jsx
@@ -10,7 +10,8 @@ const mySuperStyles = {
10
const Badge = props => {
11
return (
12
<button style={mySuperStyles} type="button" className="btn btn-primary">
13
- {props.label}<span className="badge badge-light">{props.number}</span>
+ {props.label}
14
+ <span className="badge badge-light">{props.number}</span>
15
</button>
16
);
17
};
0 commit comments