Skip to content

Commit 0bcf600

Browse files
committed
fix: fix EOL at the end of button-jsx-example-input test fixture
1 parent 1d8befd commit 0bcf600

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

transforms/__testfixtures__/react-19-replace-default-props/button-jsx-example-input.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ const Button = ({ size, color }) => {
55
Button.defaultProps = {
66
size: "16px",
77
color: "blue",
8-
};
8+
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
const Button = ({ size = "16px", color = "blue" }) => {
22
return <button style={{ color, fontSize: size }}>Click me</button>;
3-
};
3+
};

0 commit comments

Comments
 (0)