Kakious
994a94f9e3
Some checks failed
/ build (push) Failing after 10s
fix: attempt to build using local docker file
9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
'use client';
|
|
|
|
export default function Providers({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return <>{children}</>;
|
|
}
|