Skip to content

Commit

Permalink
refactor: 피드백 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielyoon7 committed Sep 1, 2023
1 parent 5dc0291 commit c6d5c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/ui/compound/Graph/Bar.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ export default meta;
export const Default = () => {
return Array.from({ length: 25 }, (_, index) => (
<Box key={index} my={1}>
<Bar align={'column'} ratio={(index / 24) * 100} hour={index} />
<Bar align="column" ratio={(index / 24) * 100} hour={index} />
</Box>
));
};

export const NoRatio = () => {
return <Bar align={'column'} ratio={NO_RATIO} hour={1} />;
return <Bar align="column" ratio={NO_RATIO} hour={1} />;
};

0 comments on commit c6d5c25

Please sign in to comment.