Simple hub page for WhyRating project resources: - Brand Site link - Templates Site link - Outline Docs link Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
'use client';
|
|
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
|
return <>{children}</>;
|
|
}
|