1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/screens/Tabs/Shared/Account/Context.tsx
2023-01-02 02:08:12 +01:00

10 lines
231 B
TypeScript

import { createContext } from 'react'
type AccountContextType = {
account?: Mastodon.Account
pageMe?: boolean
}
const AccountContext = createContext<AccountContextType>({} as AccountContextType)
export default AccountContext