Skip to content

Commit

Permalink
fix: solve types for ScrollableBox
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelDemey committed Dec 3, 2024
1 parent f9e04f8 commit 87d391f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/ScrollableBox.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Box, { BoxProps } from '@mui/material/Box';
import { ComponentProps } from 'react';

interface ScrollableBoxProps {
type ScrollableBoxProps = {
height: string;
props: BoxProps;
}
} & BoxProps;

export function ScrollableBox({ height, ...props }: Readonly<ScrollableBoxProps>) {
return (
Expand Down

0 comments on commit 87d391f

Please sign in to comment.