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={"科研平台"} />
<p className={"text-base indent-8 my-1"}>...</p>
2023-10-30 17:29:35 +08:00
</>
);
};
export default Page;