13 lines
192 B
TypeScript
Raw Normal View History

2023-10-13 22:31:56 -04:00
"use client";
2023-10-14 18:57:37 -04:00
import Article from "@/containers/Article";
2023-10-13 22:31:56 -04:00
export default function ArticlePage({
params: { eventId },
}: {
params: {
eventId: string;
};
}) {
2023-10-14 18:57:37 -04:00
return <Article />;
2023-10-13 22:31:56 -04:00
}