first commit
This commit is contained in:
15
components/Exporter/PreviewArea.tsx
Normal file
15
components/Exporter/PreviewArea.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
"use client"
|
||||
|
||||
import { Card } from "@/components/ui/card"
|
||||
|
||||
export function PreviewArea() {
|
||||
return (
|
||||
<div className="h-full min-h-[500px] w-full border rounded-xl bg-zinc-100 dark:bg-zinc-950 flex items-center justify-center relative overflow-hidden">
|
||||
{/* Placeholder for actual content */}
|
||||
<div className="text-center space-y-2 opacity-50">
|
||||
<p className="font-medium text-sm">Preview Canvas</p>
|
||||
<p className="text-xs">Result will appear here</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user