Skip to content

Commit

Permalink
chire: test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
richmccartney committed Nov 30, 2020
1 parent 06be7ea commit 20b4817
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/react/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import React, {
forwardRef
} from 'react';

const Button = forwardRef<HTMLButtonElement>(
const Button = forwardRef(
(
{ children },
{ children, id },
ref
) => {
return <button ref={ref}>{children}</button>
return <button id={id} ref={ref}>{children}</button>
}
)

Expand Down

0 comments on commit 20b4817

Please # to comment.