AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 presentation-ai
FontPreviews.tsx
根目录
/
src
/
components
/
ui
/
font-picker
/
components
/
FontPreviews.tsx
1
import { type ReactNode } from "react";
2
import "../font-preview/font-previews.css";
3
4
const FontPreviews = ({ children }: { children?: ReactNode }) => (
5
<>{children}</>
6
);
7
8
export default FontPreviews;
9
9 lines
Plain Text