13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import ArticleHeading from "@/app/components/ArticleHeading";
|
|
|
|
const Page = () => {
|
|
return (
|
|
<>
|
|
<ArticleHeading text={"科研平台"} />
|
|
<p className={"my-1 indent-8 text-base"}>筹建中...</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Page;
|