1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-24 07:50:47 +01:00
Whalebird-desktop-client-ma.../renderer/pages/_app.tsx

18 lines
503 B
TypeScript
Raw Normal View History

2023-11-01 17:20:27 +01:00
import type { AppProps } from 'next/app'
import '../app.css'
import AccountLayout from '@/components/layouts/account'
import TimelineLayout from '@/components/layouts/timelines'
2023-11-04 07:32:37 +01:00
import { IntlProviderWrapper } from '@/utils/i18n'
2023-11-01 17:20:27 +01:00
export default function MyApp({ Component, pageProps }: AppProps) {
return (
2023-11-04 07:32:37 +01:00
<IntlProviderWrapper>
<AccountLayout>
<TimelineLayout>
<Component {...pageProps} />
</TimelineLayout>
</AccountLayout>
</IntlProviderWrapper>
2023-11-01 17:20:27 +01:00
)
}