mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
'use client'
|
|
|
|
function ClientComponentSkeleton({ children }: { children: React.ReactNode }) {
|
|
return <div>{children}</div>
|
|
}
|
|
|
|
export default ClientComponentSkeleton
|