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