- 前端文件移入 frontend/ 子目录 - 新建 backend/ 目录(待开发) - 新增 CLAUDE.md、claudehd.md、EXTERNAL_SERVICES.md Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
'use client'
|
|
|
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio'
|
|
|
|
function AspectRatio({
|
|
...props
|
|
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
|
|
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />
|
|
}
|
|
|
|
export { AspectRatio }
|