Skip to content

Commit

Permalink
fix: removed useless imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroerta committed Feb 8, 2022
1 parent 9c504f3 commit 1c37cf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions docs/src/components/ClickableCard/ClickableCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ import styles from './ClickableCard.module.css';
import ArrowRight from './ArrowRight';
import clsx from 'clsx';

export function ClickableCard({
children,
badge,
icon,
onClick,
className,
textClassName,
}) {
export function ClickableCard({ children, badge, icon, onClick, className }) {
return (
<div
className={clsx('morfeo-card-outlined', styles.container, className)}
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/CodeSnippet/CodeSnippet.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useEffect } from 'react';
import React from 'react';
import CodeBlock from '@theme/CodeBlock';

import styles from './CodeSnippet.module.css';
Expand Down

0 comments on commit 1c37cf0

Please sign in to comment.