Files

13 lines
251 B
TypeScript
Raw Normal View History

2023-11-01 17:27:06 +08:00
import ArticleHeading from "@/app/components/ArticleHeading";
2023-10-30 17:29:35 +08:00
const Page = () => {
return (
<>
2023-11-01 17:27:06 +08:00
<ArticleHeading text={"科研平台"} />
2023-11-03 17:25:10 +08:00
<p className={"my-1 indent-8 text-base"}>...</p>
2023-10-30 17:29:35 +08:00
</>
);
};
export default Page;