Skip to content
Snippets Groups Projects
page.tsx 262 B
Newer Older
import { GweetDetails } from "@/components/gweets";
import { GweetHeader } from "@/components/layout";

export default async function GweetDetailPage() {
    return (
        <div>
            <GweetHeader />
            <GweetDetails />
        </div>
    );
};