6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
import { type PropsWithChildren } from 'react';
|
|
|
|
export function EmptyProvider({ children }: Readonly<PropsWithChildren>) {
|
|
return <>{children}</>;
|
|
}
|