Skip to content

Commit e47d3a6

Browse files
committed
format code
1 parent d0ff912 commit e47d3a6

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed
Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
const FancyButton = React.forwardRef(
2-
function Button(props, ref) {
3-
return (
4-
<button ref={ref} className="FancyButton">
5-
{props.children}
6-
</button>
7-
);
8-
}
9-
);
1+
const FancyButton = React.forwardRef(function Button(
2+
props,
3+
ref
4+
) {
5+
return (
6+
<button ref={ref} className="FancyButton">
7+
{props.children}
8+
</button>
9+
);
10+
});

0 commit comments

Comments
 (0)