Files
quantulr b6a722fa79 update
2023-11-03 17:25:10 +08:00

18 lines
513 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-inside list-decimal indent-8"}>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
</>
);
};
export default Page;