Skip to content

Commit

Permalink
fixing changes from PR
Browse files Browse the repository at this point in the history
  • Loading branch information
wrt95 committed Oct 28, 2024
1 parent d0eb3ff commit b88557c
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import React, { type ReactNode, type ReactElement } from 'react';
import React, { type ReactElement, type HTMLAttributes } from 'react';
import cn from 'classnames';
import classes from './StudioRedirectBox.module.css';
import { StudioLabelAsParagraph } from '@studio/components';

export type StudioRedirectBoxProps = {
title: string;
children: ReactNode;
className?: string;
};
} & HTMLAttributes<HTMLDivElement>;

export const StudioRedirectBox = ({
title,
Expand Down

0 comments on commit b88557c

Please sign in to comment.