// import BlogPostClient from "./BlogPostClient";

import BlogPostClient from "./BlogPostClient";

export async function generateStaticParams() {
    return [
        { id: '1' },
        { id: '2' },
        { id: '3' },
        { id: '4' },
    ];
}

export default async function Page(props: { params: Promise<{ id: string }> }) {
    const params = await props.params;
    return <BlogPostClient params={params} />;
}
