Skip to content

Commit

Permalink
chore: use Box instead of div
Browse files Browse the repository at this point in the history
  • Loading branch information
Asuka109 committed Nov 21, 2023
1 parent 4ee0094 commit e28c92b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Page: React.FC = () => {
};

return (
<div className={styles.container}>
<Box className={styles.container}>
<Heading mt="4">Header Modifier</Heading>
<Flex align="center" gap="1">
<Box className={styles.signal} data-active={isActive} />
Expand All @@ -63,7 +63,7 @@ const Page: React.FC = () => {
Unregister
</Button>
</Flex>
</div>
</Box>
);
};

Expand Down

0 comments on commit e28c92b

Please sign in to comment.