12 lines
194 B
TypeScript
12 lines
194 B
TypeScript
'use client';
|
|
|
|
import PasteForm from '@/components/PasteForm';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="relative min-h-screen">
|
|
<PasteForm />
|
|
</div>
|
|
);
|
|
}
|