"use server";
import IndexPage from "../components/indexpage";


export default async function PredictionPage({ params }: { params: { predictions: string } }) {


    return (
        <IndexPage params={params} />
    );
}
