diff --git a/app/components/Preview/PreviewBox.tsx b/app/components/Preview/PreviewBox.tsx index 6e5a6fc..6991d51 100644 --- a/app/components/Preview/PreviewBox.tsx +++ b/app/components/Preview/PreviewBox.tsx @@ -1,19 +1,24 @@ import { Title } from "../Primitives/Title"; export type PreviewBoxProps = { + link?: string; children: React.ReactNode; className?: string; }; -export function PreviewBox({ children, className }: PreviewBoxProps) { +export function PreviewBox({ link, className, children }: PreviewBoxProps) { return (
Preview -
-
{children}
-
+ +
{children}
+
); }