2 Star 3 Fork 0

gitone-dev/gitone

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RelativeTime.tsx 318 Bytes
一键复制 编辑 原始数据 按行查看 历史
ceshiyixiaba 提交于 2024-05-10 23:29 +08:00 . markup 样式,添加 blame
import Box from "@mui/material/Box";
import dayjs from "./dayts";
interface Props {
date: string;
}
export default function RelativeTime(props: Props) {
const day = dayjs(props.date);
return (
<Box component="span" title={props.date} sx={{ whiteSpace: "nowrap" }}>
{day.fromNow()}
</Box>
);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gitone-dev/gitone.git
git@gitee.com:gitone-dev/gitone.git
gitone-dev
gitone
gitone
develop

搜索帮助