Skip to content

Commit

Permalink
refactor: rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien-Ahkrin committed Dec 17, 2024
1 parent 4ede38b commit 3ae46bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stories/components/context-menu.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
title: 'Components / ContextMenu',
};

const ContextMenuStyled = styled(ContextMenu)`
const StyledContextMenu = styled(ContextMenu)`
height: 500px;
width: 500px;
border: 1px solid black;
Expand All @@ -37,9 +37,9 @@ export function ContextDropdown() {
);

return (
<ContextMenuStyled content={content}>
<StyledContextMenu content={content}>
<p>Hello, World!</p>
</ContextMenuStyled>
</StyledContextMenu>
);
}

Expand Down

0 comments on commit 3ae46bc

Please sign in to comment.