Skip to content

Commit dae02f6

Browse files
authored
Update app.jsx
1 parent 91c722e commit dae02f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

exercises/05-adding-styles/app.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ const mySuperStyles = {
1010
const Badge = props => {
1111
return (
1212
<button style={mySuperStyles} type="button" className="btn btn-primary">
13-
{props.label}<span className="badge badge-light">{props.number}</span>
13+
{props.label}
14+
<span className="badge badge-light">{props.number}</span>
1415
</button>
1516
);
1617
};

0 commit comments

Comments
 (0)