Skip to content

Commit

Permalink
update MobileTable to iclude props spread to View
Browse files Browse the repository at this point in the history
  • Loading branch information
Jod929 committed Aug 29, 2023
1 parent 20c5e4f commit 4a1dd67
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/desktop-client/src/components/budget/MobileTable.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import React, { type CSSProperties, type ReactNode } from 'react';
import React, {
type ComponentProps,
type CSSProperties,
type ReactNode,
} from 'react';

import { colors } from '../../style';
import View from '../common/View';

export const ROW_HEIGHT = 50;

type ListItemProps = {
type ListItemProps = ComponentProps<typeof View> & {
children?: ReactNode;
style: CSSProperties;
};
Expand Down

0 comments on commit 4a1dd67

Please sign in to comment.