fix return types
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m25s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m25s
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import { cn } from "@/common/utils";
|
||||
import { ReactElement } from "react";
|
||||
|
||||
export function Card({
|
||||
children,
|
||||
@ -6,6 +7,6 @@ export function Card({
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
className?: string;
|
||||
}>): JSX.Element {
|
||||
}>): ReactElement {
|
||||
return <div className={cn("bg-secondary rounded-lg p-3", className)}>{children}</div>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user