Click for more

This commit is contained in:
2022-05-12 23:13:52 +08:00
parent 9460a2496e
commit 06dab46a55
3 changed files with 132 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
export default function ClickForMore() {
return (
<span
style={{
textDecorationLine: "underline",
color: "red",
}}
>
{"点击阅读更多..."}
</span>
);
}