import { Container, Col, Row } from "react-bootstrap"; import { UpdateArticleEditor } from "@/modules/features/article/components/articleEditor"; import { fetchArticle } from "@/modules/features/article/fetch/fetchArticle"; import { Suspense } from "react"; type Props = { params: Promise<{ slug: string; }>; }; const Page = async ({ params }: Props) => { const article = fetchArticle((await params).slug); return (