Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ciampo committed Sep 5, 2023
1 parent 2364d02 commit e69993e
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ const Template: StoryFn< typeof ToggleGroupControl > = ( {
useState< ToggleGroupControlProps[ 'value' ] >();

return (
<ToggleGroupControl
__nextHasNoMarginBottom
{ ...props }
onChange={ ( ...changeArgs ) => {
setValue( ...changeArgs );
onChange?.( ...changeArgs );
} }
value={ value }
/>
<ToggleGroupControl
__nextHasNoMarginBottom
{ ...props }
onChange={ ( ...changeArgs ) => {
setValue( ...changeArgs );
onChange?.( ...changeArgs );
} }
value={ value }
/>
);
};

Expand Down

0 comments on commit e69993e

Please sign in to comment.