import type { FC, PropsWithChildren } from 'react' import WebAppStoreProvider from '@/context/web-app-context' import Splash from './components/splash' const Layout: FC = ({ children }) => { return (
{children}
) } export default Layout