Vlad Chikalkin ed197143d6
Feature/tma back button (#70)
* feat(layout): integrate TelegramProvider and BackButton into main layout for enhanced navigation

* refactor(layout): remove BackButton from main layout and update navigation imports

* use ui back button for non tma mode
2025-08-02 15:42:06 +03:00

6 lines
152 B
TypeScript

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