2025-08-02 15:40:39 +03:00

6 lines
152 B
TypeScript

import { type PropsWithChildren } from 'react';
export function EmptyProvider({ children }: Readonly<PropsWithChildren>) {
return <>{children}</>;
}