导入CSV文件

This commit is contained in:
柳清爽
2025-04-08 16:01:59 +08:00
parent dbc010a294
commit cccff5befb
106 changed files with 187604 additions and 319 deletions

View File

@@ -0,0 +1,20 @@
import React from "react";
import { cn } from "@/lib/utils";
interface CodeProps {
children: React.ReactNode;
className?: string;
}
export function Code({ children, className }: CodeProps) {
return (
<code
className={cn(
"relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm",
className
)}
>
{children}
</code>
);
}