Files
quantulr 1a22404f19 update
2023-11-01 17:27:06 +08:00

24 lines
811 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import ArticleHeading from "@/app/components/ArticleHeading";
const Page = () => {
return (
<>
<ArticleHeading text={"科研项目申报"} />
<ol className={"list-decimal list-inside indent-8"}>
<li></li>
<li></li>
<li>
</li>
<li>
绿
</li>
<li></li>
<li></li>
</ol>
</>
);
};
export default Page;