Skip to content

Commit

Permalink
chore: add state types
Browse files Browse the repository at this point in the history
  • Loading branch information
coston committed Nov 15, 2024
1 parent c33accc commit 492746b
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ export interface VictoryClipContainerProps {
translateY?: number;
}

export class VictoryClipContainer extends React.Component<VictoryClipContainerProps> {
interface VictoryClipContainerState {
clipId?: number | string;
}

export class VictoryClipContainer extends React.Component<
VictoryClipContainerProps,
VictoryClipContainerState
> {
static displayName = "VictoryClipContainer";
static role = "container";

Expand Down

0 comments on commit 492746b

Please sign in to comment.