Files
cunkebao_v3/Cunkebao/app/components/SideNav.tsx
2025-07-07 17:08:27 +08:00

7 lines
187 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client"
// 由于我们不再使用PC自适应这个组件可以简化为一个空组件
export default function SideNav({ className }: { className?: string }) {
return null
}